Example usage for Java com.vaadin.ui AbstractSplitPanel fields, constructors, methods, implement or subclass
The text is from its open source code.
Component | getFirstComponent() Gets the first component of this split panel. |
float | getMaxSplitPosition() Returns the current maximum position of the splitter, in #getMaxSplitPositionUnit() units. |
Unit | getMaxSplitPositionUnit() Returns the unit of the maximum position of the splitter. |
float | getMinSplitPosition() Returns the current minimum position of the splitter, in #getMinSplitPositionUnit() units. |
Unit | getMinSplitPositionUnit() Returns the unit of the minimum position of the splitter. |
Component | getSecondComponent() Gets the second component of this split panel. |
float | getSplitPosition() Returns the current position of the splitter, in #getSplitPositionUnit() units. |
Unit | getSplitPositionUnit() Returns the unit of position of the splitter. |
void | setCaption(String caption) |
void | setFirstComponent(Component c) Sets the first component of this split panel. |
void | setHeight(String height) |
void | setLocked(boolean locked) Lock the SplitPanels position, disabling the user from dragging the split handle. |
void | setMaxSplitPosition(float pos, Unit unit) Sets the maximum split position to the given position and unit. |
void | setMinSplitPosition(float pos, Unit unit) Sets the minimum split position to the given position and unit. |
void | setSecondComponent(Component c) Sets the second component of this split panel. |
void | setSizeFull() |
void | setSplitPosition(float pos, boolean reverse) Moves the position of the splitter. |
void | setSplitPosition(float pos, Unit unit) Moves the position of the splitter with given position and unit. |
void | setSplitPosition(float pos) Moves the position of the splitter. |
void | setStyleName(String style) |
void | setWidth(String width) |