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

Variable Index

 o BLOCKSIZE_NONE
Indicates that this schema item does not currently use blocks.
 o BLOCKSIZE_PROPERTY
Indicates changes in the block size for this schema item.

Method Index

 o getBlocksize()
Gets the block size (in bytes) for this schema item.
 o setBlocksize(int)
Sets the block size (in bytes) for this schema item.

Variables

 o BLOCKSIZE_NONE
 public static final int BLOCKSIZE_NONE
Indicates that this schema item does not currently use blocks.

 o BLOCKSIZE_PROPERTY
 public static final String BLOCKSIZE_PROPERTY
Indicates changes in the block size for this schema item.

Methods

 o 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.
 o 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