Class Container
- java.lang.Object
-
- com.aquima.web.api.model.page.element.ElementModel
-
- com.aquima.web.api.model.page.element.CompositeModel
-
- com.aquima.web.api.model.page.element.Container
-
- Direct Known Subclasses:
Page
public class Container extends CompositeModel
This class represents the viewmodel of the container.- Since:
- 9.2
- Author:
- A.Pragt
-
-
Constructor Summary
Constructors Constructor Description Container()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getContentStyle()
This method sets the contentstyle of the container.String
getDisplayName()
This method returns the displayname of the container.String
getType()
int
hashCode()
void
setContentStyle(String contentStyle)
This method sets the contentstyle of the container.void
setDisplayName(String displayName)
This method sets the displayname of the container.-
Methods inherited from class com.aquima.web.api.model.page.element.CompositeModel
addChild, getChildren
-
Methods inherited from class com.aquima.web.api.model.page.element.ElementModel
addProperty, getFunctionalKey, getKey, getName, getProperties, getStyles, setFunctionalKey, setKey, setName
-
-
-
-
Method Detail
-
getType
public String getType()
- Specified by:
getType
in classElementModel
-
getDisplayName
public String getDisplayName()
This method returns the displayname of the container.- Returns:
- The displayname of the container.
-
setDisplayName
public void setDisplayName(String displayName)
This method sets the displayname of the container.- Parameters:
displayName
- The displayname.
-
getContentStyle
public String getContentStyle()
This method sets the contentstyle of the container.- Returns:
- The contentstyle of the container.
-
setContentStyle
public void setContentStyle(String contentStyle)
This method sets the contentstyle of the container.- Parameters:
contentStyle
- The contentstyle of the container.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classCompositeModel
-
equals
public boolean equals(Object obj)
- Overrides:
equals
in classCompositeModel
-
-