Class Grid
- java.lang.Object
-
- com.hybris.cockpitng.config.dashboard.jaxb.Grid
-
public class Grid extends java.lang.ObjectJava class for grid complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="grid"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="placement" type="{http://www.hybris.com/cockpitng/config/dashboard}placement" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="minScreenWidth" type="{http://www.hybris.com/cockpitng/config/dashboard}positiveInt" /> <attribute name="maxScreenWidth" type="{http://www.hybris.com/cockpitng/config/dashboard}positiveInt" /> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="merge-mode" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="unassigned" type="{http://www.hybris.com/cockpitng/config/dashboard}unassignedBehavior" default="append" /> <attribute name="rowHeight" type="{http://www.hybris.com/cockpitng/config/dashboard}positiveInt" default="500" /> <attribute name="fluid" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Booleanfluidprotected java.lang.Stringidprotected java.lang.IntegermaxScreenWidthprotected java.lang.StringmergeModeprotected java.lang.IntegerminScreenWidthprotected java.util.List<Placement>placementprotected java.lang.IntegerrowHeightprotected UnassignedBehaviorunassigned
-
Constructor Summary
Constructors Constructor Description Grid()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetId()Gets the value of the id property.java.lang.IntegergetMaxScreenWidth()Gets the value of the maxScreenWidth property.java.lang.StringgetMergeMode()Gets the value of the mergeMode property.java.lang.IntegergetMinScreenWidth()Gets the value of the minScreenWidth property.java.util.List<Placement>getPlacement()Gets the value of the placement property.intgetRowHeight()Gets the value of the rowHeight property.UnassignedBehaviorgetUnassigned()Gets the value of the unassigned property.booleanisFluid()Gets the value of the fluid property.voidsetFluid(java.lang.Boolean value)Sets the value of the fluid property.voidsetId(java.lang.String value)Sets the value of the id property.voidsetMaxScreenWidth(java.lang.Integer value)Sets the value of the maxScreenWidth property.voidsetMergeMode(java.lang.String value)Sets the value of the mergeMode property.voidsetMinScreenWidth(java.lang.Integer value)Sets the value of the minScreenWidth property.voidsetRowHeight(java.lang.Integer value)Sets the value of the rowHeight property.voidsetUnassigned(UnassignedBehavior value)Sets the value of the unassigned property.
-
-
-
Field Detail
-
placement
protected java.util.List<Placement> placement
-
minScreenWidth
protected java.lang.Integer minScreenWidth
-
maxScreenWidth
protected java.lang.Integer maxScreenWidth
-
id
protected java.lang.String id
-
mergeMode
protected java.lang.String mergeMode
-
unassigned
protected UnassignedBehavior unassigned
-
rowHeight
protected java.lang.Integer rowHeight
-
fluid
protected java.lang.Boolean fluid
-
-
Method Detail
-
getPlacement
public java.util.List<Placement> getPlacement()
Gets the value of the placement property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the placement property.For example, to add a new item, do as follows:
getPlacement().add(newItem);Objects of the following type(s) are allowed in the list
Placement
-
getMinScreenWidth
public java.lang.Integer getMinScreenWidth()
Gets the value of the minScreenWidth property.- Returns:
- possible object is
Integer
-
setMinScreenWidth
public void setMinScreenWidth(java.lang.Integer value)
Sets the value of the minScreenWidth property.- Parameters:
value- allowed object isInteger
-
getMaxScreenWidth
public java.lang.Integer getMaxScreenWidth()
Gets the value of the maxScreenWidth property.- Returns:
- possible object is
Integer
-
setMaxScreenWidth
public void setMaxScreenWidth(java.lang.Integer value)
Sets the value of the maxScreenWidth property.- Parameters:
value- allowed object isInteger
-
getId
public java.lang.String getId()
Gets the value of the id property.- Returns:
- possible object is
String
-
setId
public void setId(java.lang.String value)
Sets the value of the id property.- Parameters:
value- allowed object isString
-
getMergeMode
public java.lang.String getMergeMode()
Gets the value of the mergeMode property.- Returns:
- possible object is
String
-
setMergeMode
public void setMergeMode(java.lang.String value)
Sets the value of the mergeMode property.- Parameters:
value- allowed object isString
-
getUnassigned
public UnassignedBehavior getUnassigned()
Gets the value of the unassigned property.- Returns:
- possible object is
UnassignedBehavior
-
setUnassigned
public void setUnassigned(UnassignedBehavior value)
Sets the value of the unassigned property.- Parameters:
value- allowed object isUnassignedBehavior
-
getRowHeight
public int getRowHeight()
Gets the value of the rowHeight property.- Returns:
- possible object is
Integer
-
setRowHeight
public void setRowHeight(java.lang.Integer value)
Sets the value of the rowHeight property.- Parameters:
value- allowed object isInteger
-
isFluid
public boolean isFluid()
Gets the value of the fluid property.- Returns:
- possible object is
Boolean
-
setFluid
public void setFluid(java.lang.Boolean value)
Sets the value of the fluid property.- Parameters:
value- allowed object isBoolean
-
-