Class ColumnConfiguration
- java.lang.Object
-
- de.hybris.platform.cockpit.services.config.jaxb.listview.ColumnConfiguration
-
- Direct Known Subclasses:
CellRenderer,Custom,Property
public abstract class ColumnConfiguration extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Booleaneditableprotected java.lang.Stringnameprotected java.math.BigIntegerpositionprotected CellRendererrendererprotected java.lang.Booleansortableprotected java.lang.Booleanvisibleprotected java.lang.Stringwidth
-
Constructor Summary
Constructors Constructor Description ColumnConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()Gets the value of the name property.java.math.BigIntegergetPosition()Gets the value of the position property.CellRenderergetRenderer()java.lang.StringgetWidth()Gets the value of the width property.booleanisEditable()Gets the value of the editable property.booleanisSortable()Gets the value of the sortable property.booleanisVisible()Gets the value of the visible property.voidsetEditable(java.lang.Boolean value)Sets the value of the editable property.voidsetName(java.lang.String value)Sets the value of the name property.voidsetPosition(java.math.BigInteger value)Sets the value of the position property.voidsetRenderer(CellRenderer renderer)voidsetSortable(java.lang.Boolean value)Sets the value of the sortable property.voidsetVisible(java.lang.Boolean value)Sets the value of the visible property.voidsetWidth(java.lang.String value)Sets the value of the width property.
-
-
-
Field Detail
-
visible
protected java.lang.Boolean visible
-
sortable
protected java.lang.Boolean sortable
-
editable
protected java.lang.Boolean editable
-
name
protected java.lang.String name
-
width
protected java.lang.String width
-
position
protected java.math.BigInteger position
-
renderer
protected CellRenderer renderer
-
-
Method Detail
-
isVisible
public boolean isVisible()
Gets the value of the visible property.- Returns:
- possible object is
Boolean
-
setVisible
public void setVisible(java.lang.Boolean value)
Sets the value of the visible property.- Parameters:
value- allowed object isBoolean
-
isSortable
public boolean isSortable()
Gets the value of the sortable property.- Returns:
- possible object is
Boolean
-
setSortable
public void setSortable(java.lang.Boolean value)
Sets the value of the sortable property.- Parameters:
value- allowed object isBoolean
-
isEditable
public boolean isEditable()
Gets the value of the editable property.- Returns:
- possible object is
Boolean
-
setEditable
public void setEditable(java.lang.Boolean value)
Sets the value of the editable property.- Parameters:
value- allowed object isBoolean
-
getName
public java.lang.String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(java.lang.String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getWidth
public java.lang.String getWidth()
Gets the value of the width property.- Returns:
- possible object is
String
-
setWidth
public void setWidth(java.lang.String value)
Sets the value of the width property.- Parameters:
value- allowed object isString
-
setRenderer
public void setRenderer(CellRenderer renderer)
-
getRenderer
public CellRenderer getRenderer()
-
getPosition
public java.math.BigInteger getPosition()
Gets the value of the position property.- Returns:
- possible object is
BigInteger
-
setPosition
public void setPosition(java.math.BigInteger value)
Sets the value of the position property.- Parameters:
value- allowed object isBigInteger
-
-