Module org.refcodes.graphical
Package org.refcodes.graphical
Interface ContainerHeightAccessor.ContainerHeightProperty
- All Superinterfaces:
ContainerHeightAccessor
,ContainerHeightAccessor.ContainerHeightMutator
- All Known Subinterfaces:
ContainerDimension.ContainerDimensionProperty
- Enclosing interface:
- ContainerHeightAccessor
public static interface ContainerHeightAccessor.ContainerHeightProperty
extends ContainerHeightAccessor, ContainerHeightAccessor.ContainerHeightMutator
Provides a container height property.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.refcodes.graphical.ContainerHeightAccessor
ContainerHeightAccessor.ContainerHeightBuilder<B extends ContainerHeightAccessor.ContainerHeightBuilder<B>>, ContainerHeightAccessor.ContainerHeightMutator, ContainerHeightAccessor.ContainerHeightProperty
-
Method Summary
Modifier and TypeMethodDescriptiondefault int
letContainerHeight
(int aContainerHeight) This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given container height (setter) as ofContainerHeightAccessor.ContainerHeightMutator.setContainerHeight(int)
and returns the very same value (getter).Methods inherited from interface org.refcodes.graphical.ContainerHeightAccessor
getContainerHeight
Methods inherited from interface org.refcodes.graphical.ContainerHeightAccessor.ContainerHeightMutator
setContainerHeight
-
Method Details
-
letContainerHeight
default int letContainerHeight(int aContainerHeight) This method stores and passes through the given argument, which is very useful for builder APIs: Sets the given container height (setter) as ofContainerHeightAccessor.ContainerHeightMutator.setContainerHeight(int)
and returns the very same value (getter).- Parameters:
aContainerHeight
- The container height to set (viaContainerHeightAccessor.ContainerHeightMutator.setContainerHeight(int)
).- Returns:
- Returns the value passed for it to be used in conclusive processing steps.
-