Class TextAreaImpl
java.lang.Object
ch.tocco.nice2.model.form.api.components.AbstractComponent<TextArea>
ch.tocco.nice2.model.form.api.components.AbstractLabeledComponent<TextArea>
ch.tocco.nice2.model.form.api.components.AbstractDataComponent<TextArea>
ch.tocco.nice2.model.form.api.components.simple.TextAreaImpl
- All Implemented Interfaces:
Component
,InputComponent
,LabeledComponent
,TextArea
,DataComponent
Deprecated.
-
Nested Class Summary
Nested classes/interfaces inherited from interface ch.tocco.nice2.model.form.api.components.Component
Component.ComponentFilter, Component.DataNavigationType, Component.DisplayType, Component.Position
Nested classes/interfaces inherited from interface ch.tocco.nice2.model.form.api.components.LabeledComponent
LabeledComponent.UseLabel
Nested classes/interfaces inherited from interface ch.tocco.nice2.model.form.api.components.simple.TextArea
TextArea.HeightType
-
Field Summary
Fields inherited from class ch.tocco.nice2.model.form.api.components.AbstractComponent
attributeProps, extProps, name
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
Deprecated.Checks if a numeric value is acceptable for the int setters in this class.Deprecated.Returns the default data type to use for this data component.int
Deprecated.boolean
Deprecated.int
Deprecated.int
Deprecated.Deprecated.protected TextArea
newInstanceForCopy
(Component parent) Deprecated.Will be called when a copy is requestedComponent.createCopy()
! Create a new instanc of this component, copy the properties and return it.void
setHeight
(int height) Deprecated.void
setHeightGrow
(boolean heightGrow) Deprecated.void
setHeightGrowMax
(int heightGrowMax) Deprecated.void
setHeightGrowMin
(int heightGrowMin) Deprecated.void
setHeightType
(TextArea.HeightType heightType) Deprecated.wrap
(ComponentWrapperHandler handler) Deprecated.Wraps the component with the given interceptor handler.Methods inherited from class ch.tocco.nice2.model.form.api.components.AbstractDataComponent
getConstriction, getDataNavigationType, getDataType, getDefaultValue, getLocalizedLanguage, getPath, getReverseRelationName, getValidator, hasNonEmptyValidator, isDefaultLangOnly, isIgnoreCopy, isLocalized, mapAllAttributesTo, setConstriction, setDataType, setDefaultLangOnly, setDefaultValue, setIgnoreCopy, setLocalizedLanguage, setPath, setReverseRelationName, setValidator
Methods inherited from class ch.tocco.nice2.model.form.api.components.AbstractLabeledComponent
getLabel, getUseLabel, setLabel, setUseLabel
Methods inherited from class ch.tocco.nice2.model.form.api.components.AbstractComponent
addComponent, addComponent, collectDataParts, collectDataParts, createCopy, createCopy, equals, find, findByName, findByType, findFirst, findFirstByName, getAttributeProps, getChild, getChildren, getDisplayType, getEventHandler, getExtProps, getForm, getName, getParent, getParentOrEx, getPosition, getRelativeToPositionName, getScopes, getType, hashCode, hasParent, isForceEditable, isLeaf, isReplace, overrideParent, removeComponent, replaceComponent, replaceComponent, setAttributeProps, setChildren, setDisplayType, setEventHandler, setExtProps, setForceEditable, setName, setPosition, setRelativeToPositionName, setReplace, setScopes, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface ch.tocco.nice2.model.form.api.components.Component
addComponent, addComponent, collectDataParts, collectDataParts, createCopy, createCopy, find, findByName, findByType, findFirst, findFirstByName, getAttributeProps, getChild, getChildren, getDataNavigationType, getDisplayType, getEventHandler, getExtProps, getForm, getName, getParent, getParentOrEx, getPosition, getRelativeToPositionName, getScopes, getType, hasParent, isForceEditable, isLeaf, isReplace, overrideParent, removeComponent, replaceComponent, replaceComponent, setAttributeProps, setChildren, setDisplayType, setEventHandler, setExtProps, setForceEditable, setName, setPosition, setRelativeToPositionName, setReplace, setScopes
Methods inherited from interface ch.tocco.nice2.model.form.api.datanavigation.DataComponent
getConstriction, getDataType, getDefaultValue, getLocalizedLanguage, getPath, getReverseRelationName, getValidator, hasNonEmptyValidator, isDefaultLangOnly, isIgnoreCopy, isLocalized, setConstriction, setDataType, setDefaultLangOnly, setDefaultValue, setIgnoreCopy, setLocalizedLanguage, setPath, setReverseRelationName, setValidator
Methods inherited from interface ch.tocco.nice2.model.form.api.components.LabeledComponent
getLabel, getUseLabel, setLabel, setUseLabel
-
Constructor Details
-
TextAreaImpl
Deprecated.
-
-
Method Details
-
newInstanceForCopy
Deprecated.Description copied from class:AbstractComponent
Will be called when a copy is requestedComponent.createCopy()
! Create a new instanc of this component, copy the properties and return it. You don't have to copy the properties which are inherited from the abstract implmentation. Only copy the properties from the concrete implementation.
The parent has to be the parent given in the argument parent- Specified by:
newInstanceForCopy
in classAbstractComponent<TextArea>
- Parameters:
parent
- the parent to set- Returns:
- the new instance
-
getDefaultDataType
Deprecated.Description copied from interface:DataComponent
Returns the default data type to use for this data component.For example a text-field uses the "string" while the email-field uses the virtual type "email".
- Specified by:
getDefaultDataType
in interfaceDataComponent
- Overrides:
getDefaultDataType
in classAbstractDataComponent<TextArea>
- Returns:
- The name of the nice2 data type.
-
checkInt
Deprecated.Checks if a numeric value is acceptable for the int setters in this class. -
getHeightType
Deprecated.- Specified by:
getHeightType
in interfaceTextArea
-
setHeightType
Deprecated.- Specified by:
setHeightType
in interfaceTextArea
-
getHeight
public int getHeight()Deprecated. -
setHeight
public void setHeight(int height) Deprecated. -
getHeightGrow
public boolean getHeightGrow()Deprecated.- Specified by:
getHeightGrow
in interfaceTextArea
-
setHeightGrow
public void setHeightGrow(boolean heightGrow) Deprecated.- Specified by:
setHeightGrow
in interfaceTextArea
-
getHeightGrowMin
public int getHeightGrowMin()Deprecated.- Specified by:
getHeightGrowMin
in interfaceTextArea
-
setHeightGrowMin
public void setHeightGrowMin(int heightGrowMin) Deprecated.- Specified by:
setHeightGrowMin
in interfaceTextArea
-
getHeightGrowMax
public int getHeightGrowMax()Deprecated.- Specified by:
getHeightGrowMax
in interfaceTextArea
-
setHeightGrowMax
public void setHeightGrowMax(int heightGrowMax) Deprecated.- Specified by:
setHeightGrowMax
in interfaceTextArea
-
wrap
Deprecated.Description copied from interface:Component
Wraps the component with the given interceptor handler.Feel free to add an unwrap() method when needed.
-