Package com.axelor.meta.db
Class MetaSelectItem
- java.lang.Object
-
- com.axelor.db.Model
-
- com.axelor.auth.db.AuditableModel
-
- com.axelor.meta.db.MetaSelectItem
-
@Entity public class MetaSelectItem extends AuditableModel
This object stores the select items.
-
-
Constructor Summary
Constructors Constructor Description MetaSelectItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getColor()
The color to use for tagsString
getData()
The addition data for UI widgetsBoolean
getHidden()
String
getIcon()
The image icon to show in UI widgetsLong
getId()
Integer
getOrder()
MetaSelect
getSelect()
String
getTitle()
The select item titleString
getValue()
The select item valueint
hashCode()
void
setColor(String color)
void
setData(String data)
void
setHidden(Boolean hidden)
void
setIcon(String icon)
void
setId(Long id)
void
setOrder(Integer order)
void
setSelect(MetaSelect select)
void
setTitle(String title)
void
setValue(String value)
String
toString()
-
Methods inherited from class com.axelor.auth.db.AuditableModel
getCreatedBy, getCreatedOn, getUpdatedBy, getUpdatedOn
-
Methods inherited from class com.axelor.db.Model
getArchived, getCid, getVersion, isSelected, setArchived, setCid, setSelected, setVersion
-
-
-
-
Method Detail
-
getTitle
public String getTitle()
The select item title- Returns:
- the property value
-
setTitle
public void setTitle(String title)
-
getValue
public String getValue()
The select item value- Returns:
- the property value
-
setValue
public void setValue(String value)
-
getIcon
public String getIcon()
The image icon to show in UI widgets- Returns:
- the property value
-
setIcon
public void setIcon(String icon)
-
getColor
public String getColor()
The color to use for tags- Returns:
- the property value
-
setColor
public void setColor(String color)
-
getData
public String getData()
The addition data for UI widgets- Returns:
- the property value
-
setData
public void setData(String data)
-
getOrder
public Integer getOrder()
-
setOrder
public void setOrder(Integer order)
-
getHidden
public Boolean getHidden()
-
setHidden
public void setHidden(Boolean hidden)
-
getSelect
public MetaSelect getSelect()
-
setSelect
public void setSelect(MetaSelect select)
-
-