Module org.refcodes.graphical
Package org.refcodes.graphical
Interface FieldWidthAccessor.FieldWidthProperty
- All Superinterfaces:
FieldWidthAccessor
,FieldWidthAccessor.FieldWidthMutator
- All Known Subinterfaces:
FieldDimension.FieldDimensionProperty
,GridViewportPane<C,
,B> Raster.RasterProperty
- All Known Implementing Classes:
RasterPropertyBuilder
- Enclosing interface:
- FieldWidthAccessor
public static interface FieldWidthAccessor.FieldWidthProperty
extends FieldWidthAccessor, FieldWidthAccessor.FieldWidthMutator
Provides a field width property.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.refcodes.graphical.FieldWidthAccessor
FieldWidthAccessor.FieldWidthBuilder<B extends FieldWidthAccessor.FieldWidthBuilder<B>>, FieldWidthAccessor.FieldWidthMutator, FieldWidthAccessor.FieldWidthProperty
-
Method Summary
Modifier and TypeMethodDescriptiondefault int
letFieldWidth
(int aFieldWidth) This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given integer (setter) as ofFieldWidthAccessor.FieldWidthMutator.setFieldWidth(int)
and returns the very same value (getter).Methods inherited from interface org.refcodes.graphical.FieldWidthAccessor
getFieldWidth
Methods inherited from interface org.refcodes.graphical.FieldWidthAccessor.FieldWidthMutator
setFieldWidth
-
Method Details
-
letFieldWidth
default int letFieldWidth(int aFieldWidth) This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given integer (setter) as ofFieldWidthAccessor.FieldWidthMutator.setFieldWidth(int)
and returns the very same value (getter).- Parameters:
aFieldWidth
- The integer to set (viaFieldWidthAccessor.FieldWidthMutator.setFieldWidth(int)
).- Returns:
- Returns the value passed for it to be used in conclusive processing steps.
-