Uses of Interface
com.helger.html.hc.html.forms.IHCControl
-
Packages that use IHCControl Package Description com.helger.html.hc.html.forms -
-
Uses of IHCControl in com.helger.html.hc.html.forms
Classes in com.helger.html.hc.html.forms with type parameters of type IHCControl Modifier and Type Interface Description interfaceIHCControl<IMPLTYPE extends IHCControl<IMPLTYPE>>Base interface for controls like edit, checkbox, radio button, select or text area.Subinterfaces of IHCControl in com.helger.html.hc.html.forms Modifier and Type Interface Description interfaceIHCInput<IMPLTYPE extends IHCInput<IMPLTYPE>>Base interface for controls base on <input> area.interfaceIHCSelect<IMPLTYPE extends IHCSelect<IMPLTYPE>>Interface for definition itemsinterfaceIHCTextArea<IMPLTYPE extends IHCTextArea<IMPLTYPE>>Interface for TEXTAREAsClasses in com.helger.html.hc.html.forms that implement IHCControl Modifier and Type Class Description classAbstractHCCheckBox<IMPLTYPE extends AbstractHCCheckBox<IMPLTYPE>>Represents an HTML <input> element with type "checkbox"classAbstractHCControl<IMPLTYPE extends AbstractHCControl<IMPLTYPE>>classAbstractHCInput<IMPLTYPE extends AbstractHCInput<IMPLTYPE>>classAbstractHCRadioButton<IMPLTYPE extends AbstractHCRadioButton<IMPLTYPE>>Represents an HTML <input> element of type "radio"classAbstractHCSelect<IMPLTYPE extends AbstractHCSelect<IMPLTYPE>>Represents an HTML <select> elementclassAbstractHCTextArea<IMPLTYPE extends AbstractHCTextArea<IMPLTYPE>>Represents an HTML <textarea> elementclassHCCheckBoxRepresents an HTML <input> element with type "checkbox"classHCEditRepresents an HTML <input> element with type "text"classHCEditFileRepresents an HTML <input> element with type "file"classHCEditPasswordRepresents an HTML <input> element with type "password"classHCHiddenFieldRepresents an HTML <input> element with type "hidden"classHCInputRepresents a generic HTML <input> element.
For concrete elements seeHCCheckBox,HCEdit,HCEditFile,HCEditPassword,HCHiddenFieldandHCRadioButton.classHCRadioButtonRepresents an HTML <input> element of type "radio"classHCSelectRepresents an HTML <select> elementclassHCTextAreaRepresents an HTML <textarea> elementMethods in com.helger.html.hc.html.forms that return IHCControl Modifier and Type Method Description static IHCControl<?>HCCtrlHelper. getFirstHCControl(IHCNode aNode)Find the first instance ofIHCControlthat is either the passed element or a child of the passed element.Methods in com.helger.html.hc.html.forms that return types with arguments of type IHCControl Modifier and Type Method Description static com.helger.commons.collection.impl.ICommonsList<IHCControl<?>>HCCtrlHelper. getAllHCControls(IHCNode aNode)Recursively determine allIHCControlelements from and incl. the passed nodestatic com.helger.commons.collection.impl.ICommonsList<IHCControl<?>>HCCtrlHelper. getAllHCControls(Iterable<? extends IHCNode> aNodes)Recursively determine allIHCControlelements from and incl. the passed nodesMethod parameters in com.helger.html.hc.html.forms with type arguments of type IHCControl Modifier and Type Method Description static voidHCCtrlHelper. getAllHCControls(IHCNode aNode, Consumer<? super IHCControl<?>> aConsumer)Recursively determine allIHCControlelements from and incl. the passed nodestatic voidHCCtrlHelper. getAllHCControls(Iterable<? extends IHCNode> aNodes, Consumer<? super IHCControl<?>> aConsumer)Recursively determine allIHCControlelements from and incl. the passed nodes
-