All Packages Class Hierarchy This Package Previous Next Index
Interface com.ibm.beans.tools.dataFormatWizard.ArgumentsAttribute
- public interface interface ArgumentsAttribute
- extends PropertyChangeAnnouncer
The ArgumentsAttribute interface is used by schema items whose
instances can have predefined constructor arguments associated
with them. The constructor arguments will be used to construct
a Java class instance to read data from the input stream.
- See Also:
- SchemaItem
-
ARGUMENTS_PROPERTY
- Indicates changes in the arguments associated with this schema item.
-
NO_ARGUMENTS
- Indicates an unspecified value for the arguments of this schema item.
-
getArguments()
- Gets the arguments for this schema item.
-
setArguments(String)
- Sets the arguments for this schema item.
ARGUMENTS_PROPERTY
public static final String ARGUMENTS_PROPERTY
- Indicates changes in the arguments associated with this schema item.
NO_ARGUMENTS
public static final String NO_ARGUMENTS
- Indicates an unspecified value for the arguments of this schema item.
getArguments
public abstract String getArguments()
- Gets the arguments for this schema item.
- Returns:
- The arguments for this schema item.
setArguments
public abstract void setArguments(String newArguments)
- Sets the arguments for this schema item.
- Parameters:
- newArguments - The new arguments for this schema item.
All Packages Class Hierarchy This Package Previous Next Index