Package org.zkoss.zul.ext
Interface Constrainted
-
- All Known Implementing Classes:
Bandbox
,Calendar
,Combobox
,Datebox
,DateTimeFormatInputElement
,Decimalbox
,Doublebox
,Doublespinner
,FormatInputElement
,InputElement
,Intbox
,Longbox
,NumberInputElement
,Spinner
,Textbox
,Timebox
,Timepicker
public interface Constrainted
Decorates a component that its value is constrainted byConstraint
.- Author:
- tomyeh
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Constraint
getConstraint()
Returns the constraint, or null if no constraint at all.void
setConstraint(Constraint constr)
Sets the constraint.
-
-
-
Method Detail
-
setConstraint
void setConstraint(Constraint constr)
Sets the constraint.Default: null (means no constraint all all).
-
getConstraint
Constraint getConstraint()
Returns the constraint, or null if no constraint at all.
-
-