| |
|
| com.bostechcorp.cbesb.common.mdl.IFixedChildAttributes
All known Subclasses: com.bostechcorp.cbesb.common.mdl.impl.FixedChildAttributesImpl,
IFixedChildAttributes | public interface IFixedChildAttributes extends IFormatChildAttributes(Code) | | This interface extends FormatChildAttributes and represents the child level
attributes specific to fixed format. Some of the functionality provided:
1. Get/Set length
2. Get/Set justification
3. Get/Set fill character
|
Field Summary | |
final public static byte | JUSTIFICATION_LEFT "0" is meaning the value of justification is "left". | final public static byte | JUSTIFICATION_RIGHT "1" is meaning the value of justification is "right". |
JUSTIFICATION_LEFT | final public static byte JUSTIFICATION_LEFT(Code) | | "0" is meaning the value of justification is "left". The default value is "left".
|
JUSTIFICATION_RIGHT | final public static byte JUSTIFICATION_RIGHT(Code) | | "1" is meaning the value of justification is "right".
|
getFillChar | public char getFillChar()(Code) | | Get fillChar
char |
getJustification | public byte getJustification()(Code) | | Get justification
byte |
getLength | public int getLength()(Code) | | Get length
int |
setFillChar | public void setFillChar(char fillChar)(Code) | | Set fillChar
Parameters: fillChar - |
setJustification | public void setJustification(byte justification)(Code) | | Set justification
Parameters: justification - |
setLength | public void setLength(int length)(Code) | | Set length
Parameters: length - |
|
|
|