-
- All Implemented Interfaces:
public interface LayoutController
Manages layout like configurations for the given view
-
-
Method Summary
Modifier and Type Method Description abstract void
setVerticalOffset(double offset)
Set the layout's vertical offset abstract void
setHorizontalOffset(double offset)
Set the layout's horizontal offset abstract void
setOffsets(double horizontalOffset, double verticalOffset)
Set the layout's offsets -
-
Method Detail
-
setVerticalOffset
abstract void setVerticalOffset(double offset)
Set the layout's vertical offset
- Parameters:
offset
- the offset value
-
setHorizontalOffset
abstract void setHorizontalOffset(double offset)
Set the layout's horizontal offset
- Parameters:
offset
- the offset value
-
setOffsets
abstract void setOffsets(double horizontalOffset, double verticalOffset)
Set the layout's offsets
- Parameters:
horizontalOffset
- the horizontal offset valueverticalOffset
- the vertical offset value
-
-
-
-