com.f1j.ss.pivot
Interface BaseFieldSettings

All Known Subinterfaces:
FieldSettings, RowColumnFieldSettings, SummaryFieldSettings

public interface BaseFieldSettings
extends Lockable


Inner Class Summary
static class BaseFieldSettings.EFunctionType
           
 
Method Summary
 java.lang.String getName()
          Returns the field name.
 NumberFormat getNumberFormat()
          Returns the number format for this field.
 void setName(java.lang.String name)
          Sets the name of the field.
 void setNumberFormat(NumberFormat format)
          Sets the number format for this field.
 
Methods inherited from interface com.f1j.util.Lockable
getLock, releaseLock
 

Method Detail

getName

public java.lang.String getName()
Returns the field name.
Returns:
The field name.
Since:
11.0

getNumberFormat

public NumberFormat getNumberFormat()
Returns the number format for this field.
Returns:
The number format for this field.
Since:
11.0
See Also:
NumberFormat

setName

public void setName(java.lang.String name)
             throws com.f1j.ss.pivot.InvalidNameException,
                    F1Exception
Sets the name of the field.
Parameters:
name - Name of the field.
Throws:
com.f1j.ss.pivot.InvalidNameException - if name is invalid.
F1Exception - if an error occurs.
Since:
11.0

setNumberFormat

public void setNumberFormat(NumberFormat format)
                     throws InvalidArgumentException,
                            F1Exception
Sets the number format for this field.
Parameters:
format - The number format for this field.
Throws:
InvalidArgumentException - if the format is invalid.
F1Exception - if an error occurs.
Since:
11.0
See Also:
NumberFormat