Package org.exbin.bined.capability
Interface RowWrappingCapable
- 
@ParametersAreNonnullByDefault public interface RowWrappingCapableRow wrapping capability interface. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetMaxBytesPerRow()Returns maximum number of bytes per row.intgetMaxRowPositionLength()Returns maximum length of position section of the code area.intgetMinRowPositionLength()Returns minimum length of position section of the code area.RowWrappingModegetRowWrapping()Returns row wrapping mode.intgetWrappingBytesGroupSize()Returns size of the byte group.voidsetMaxBytesPerRow(int maxBytesPerRow)Sets maximum number of bytes per row.voidsetMaxRowPositionLength(int maxRowPositionLength)Sets maximum length of position section of the code area.voidsetMinRowPositionLength(int minRowPositionLength)Sets minimum length of position section of the code area.voidsetRowWrapping(RowWrappingMode rowWrapping)Sets row wrapping mode.voidsetWrappingBytesGroupSize(int groupSize)Sets size of the byte group. 
 - 
 
- 
- 
Method Detail
- 
getRowWrapping
@Nonnull RowWrappingMode getRowWrapping()
Returns row wrapping mode.- Returns:
 - row wrapping mode
 
 
- 
setRowWrapping
void setRowWrapping(RowWrappingMode rowWrapping)
Sets row wrapping mode.- Parameters:
 rowWrapping- row wrapping mode
 
- 
getMaxBytesPerRow
int getMaxBytesPerRow()
Returns maximum number of bytes per row.- Returns:
 - bytes per row
 
 
- 
setMaxBytesPerRow
void setMaxBytesPerRow(int maxBytesPerRow)
Sets maximum number of bytes per row.- Parameters:
 maxBytesPerRow- bytes per row
 
- 
getWrappingBytesGroupSize
int getWrappingBytesGroupSize()
Returns size of the byte group.- Returns:
 - size of the byte group
 
 
- 
setWrappingBytesGroupSize
void setWrappingBytesGroupSize(int groupSize)
Sets size of the byte group.- Parameters:
 groupSize- size of the byte group
 
- 
getMinRowPositionLength
int getMinRowPositionLength()
Returns minimum length of position section of the code area.- Returns:
 - minimum length
 
 
- 
setMinRowPositionLength
void setMinRowPositionLength(int minRowPositionLength)
Sets minimum length of position section of the code area.- Parameters:
 minRowPositionLength- minimum length
 
- 
getMaxRowPositionLength
int getMaxRowPositionLength()
Returns maximum length of position section of the code area.- Returns:
 - maximum length
 
 
- 
setMaxRowPositionLength
void setMaxRowPositionLength(int maxRowPositionLength)
Sets maximum length of position section of the code area.- Parameters:
 maxRowPositionLength- maximum length
 
 - 
 
 -