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
public interface ConstraintedDecorates a component that its value is constrainted byConstraint.- Author:
- tomyeh
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConstraintgetConstraint()Returns the constraint, or null if no constraint at all.voidsetConstraint(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.
-
-