| com.bostechcorp.cbesb.common.mdl.IFormatDefinition
All known Subclasses: com.bostechcorp.cbesb.common.mdl.impl.FormatDefinitionImpl,
IFormatDefinition | public interface IFormatDefinition (Code) | | Base interface to hold the format definition attributes. Provides a common
method to get/set the name identifying the type of format. Each format
supported by MDL will extend from this interface to create a more specific
Format Definition interface.
|
Method Summary | |
public String | getName() Get the value of format attribute. | public void | setName(String name) Set the value of format attribute. |
FORMAT_FIXED | final public static String FORMAT_FIXED(Code) | | An element or message defined as fixed.
|
FORMAT_VARIABLE | final public static String FORMAT_VARIABLE(Code) | | An element or message defined as variable.
|
getName | public String getName()(Code) | | Get the value of format attribute.
String The value of format attribute. |
setName | public void setName(String name)(Code) | | Set the value of format attribute.
Parameters: name - The value of format attribute. |
|
|