All Packages Class Hierarchy This Package Previous Next Index
Interface com.ibm.beans.tools.dataFormatWizard.BlocksizeAttribute
- public interface interface BlocksizeAttribute
- extends PropertyChangeAnnouncer
The BlocksizeAttribute interface is used by schema items whose
instances can have a fixed block size associated with them. This
block size will be used when reading the instance from the input stream.
- See Also:
- SchemaItem
-
BLOCKSIZE_NONE
- Indicates that this schema item does not currently use blocks.
-
BLOCKSIZE_PROPERTY
- Indicates changes in the block size for this schema item.
-
getBlocksize()
- Gets the block size (in bytes) for this schema item.
-
setBlocksize(int)
- Sets the block size (in bytes) for this schema item.
BLOCKSIZE_NONE
public static final int BLOCKSIZE_NONE
- Indicates that this schema item does not currently use blocks.
BLOCKSIZE_PROPERTY
public static final String BLOCKSIZE_PROPERTY
- Indicates changes in the block size for this schema item.
getBlocksize
public abstract int getBlocksize()
- Gets the block size (in bytes) for this schema item.
- Returns:
- The block size (in bytes) for this schema item.
setBlocksize
public abstract void setBlocksize(int newBlocksize)
- Sets the block size (in bytes) for this schema item.
- Parameters:
- newBlocksize - The new block size for this schema item.
All Packages Class Hierarchy This Package Previous Next Index