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 voidaddComponent(UIComponent component)Adds a component to this container.BorderTypegetBorderType()Returns the border type of this container.StringgetTitle()Returns the title of this container.voidsetBorderType(BorderType borderType)Sets the border type of this container.voidsetTitle(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
-
-