Interface ColumnDescriptor
- All Known Implementing Classes:
DefaultColumnDescriptor,InlineItemColumnDescriptor
public interface ColumnDescriptor
A
ColumnDescriptor describes the properties of a certain column.-
Method Summary
Modifier and TypeMethodDescriptionGets the language.getName()Returns the name of this column.booleanChecks if column is dynamic.booleanReturns whether this column is editable or not.booleanReturns whether this column is selectable or not.booleanReturns whether this column is sortable or not.booleanReturns whether this column is visible or not.voidsetDynamic(boolean dynamic) Sets the dynamic.
-
Method Details
-
getName
String getName()Returns the name of this column. -
isEditable
boolean isEditable()Returns whether this column is editable or not. -
isSelectable
boolean isSelectable()Returns whether this column is selectable or not. -
isVisible
boolean isVisible()Returns whether this column is visible or not. -
isSortable
boolean isSortable()Returns whether this column is sortable or not. -
isDynamic
boolean isDynamic()Checks if column is dynamic.- Returns:
- true, if is dynamic
-
setDynamic
void setDynamic(boolean dynamic) Sets the dynamic.- Parameters:
dynamic- the new dynamic
-
getLanguage
LanguageModel getLanguage()Gets the language.- Returns:
- the language
-