Package com.solibri.smc.api.ui
Interface UIContainer
-
- All Superinterfaces:
UIComponent
- All Known Subinterfaces:
UIContainerHorizontal
,UIContainerVertical
public interface UIContainer extends UIComponent
Interface for UIComponent containers.- Since:
- 9.10.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addComponent(UIComponent component)
Adds a component to this container.BorderType
getBorderType()
Returns the border type of this container.String
getTitle()
Returns the title of this container.void
setBorderType(BorderType borderType)
Sets the border type of this container.void
setTitle(String title)
Sets the title of this container.-
Methods inherited from interface com.solibri.smc.api.ui.UIComponent
getEnabler, setEnabler
-
-
-
-
Method Detail
-
getTitle
String getTitle()
Returns the title of this container.- Returns:
- the title of this container
- Since:
- 9.10.2
-
setTitle
void setTitle(String title)
Sets the title of this container.- Parameters:
title
- the title for this container- Since:
- 9.10.2
-
getBorderType
BorderType getBorderType()
Returns the border type of this container.- Returns:
- the border type of this container
- Since:
- 9.10.2
-
setBorderType
void setBorderType(BorderType borderType)
Sets the border type of this container.- Parameters:
borderType
- the border type for this container- Since:
- 9.10.2
-
addComponent
void addComponent(UIComponent component)
Adds a component to this container. The location of the component in the container depends on the layout implementation of the container.- Parameters:
component
- a non-null component that is added to this container- Since:
- 9.10.2
-
-