com.crystaldecisions.sdk.occa.report.definition
Interface IBooleanFieldFormat

All Superinterfaces:
IClone
All Known Implementing Classes:
BooleanFieldFormat

public interface IBooleanFieldFormat
extends IClone

This interface defines how a boolean field shown by a FieldObject should be formatted if the FieldObject is being used to display boolean fields. To access this object, use the following method:

 FieldFormat fieldFormat = fieldObject.getFieldFormat();
 BooleanFieldFormat booleanFormat = fieldFormat.getBooleanFormat();
 
If the field is not being used to represent a boolean field, and you modify this object, your changes will be ignored and discarded.


Method Summary
 BooleanFieldFormatConditionFormulas getConditionFormulas()
           Returns the condition formulas used to override the default Boolean Field format values.
 BooleanOutputFormat getOutputFormat()
           Returns the output format for the boolean value.
 void setConditionFormulas(BooleanFieldFormatConditionFormulas conditionFormulas)
           Sets the condition formulas used to override the default Boolean Field format values.
 void setOutputFormat(BooleanOutputFormat outputFormat)
           Sets the output format for the boolean value.
 

Method Detail

getConditionFormulas

BooleanFieldFormatConditionFormulas getConditionFormulas()

Returns the condition formulas used to override the default Boolean Field format values.

Returns:
A BooleanFieldFormatConditionFormulas object containing the condition formulas used to override the default Boolean Field format values.

getOutputFormat

BooleanOutputFormat getOutputFormat()

Returns the output format for the boolean value.

Returns:
A BooleanOutputFormat object that specifies the output format for the boolean value.

setConditionFormulas

void setConditionFormulas(BooleanFieldFormatConditionFormulas conditionFormulas)

Sets the condition formulas used to override the default Boolean Field format values.

Parameters:
conditionFormulas - A BooleanFieldFormatConditionFormulas object containing the condition formulas used to override the default Boolean Field format values.

setOutputFormat

void setOutputFormat(BooleanOutputFormat outputFormat)

Sets the output format for the boolean value.

Parameters:
outputFormat - A BooleanOutputFormat object that specifies the output format for the boolean value.