Interface HamletSpec._FormCtrl
- All Known Subinterfaces:
HamletSpec._Cell,HamletSpec.A,HamletSpec.ABBR,HamletSpec.ACRONYM,HamletSpec.ADDRESS,HamletSpec.B,HamletSpec.BDO,HamletSpec.CAPTION,HamletSpec.CITE,HamletSpec.CODE,HamletSpec.DD,HamletSpec.DEL,HamletSpec.DFN,HamletSpec.DIV,HamletSpec.DT,HamletSpec.EM,HamletSpec.FIELDSET,HamletSpec.Flow,HamletSpec.FormCtrl,HamletSpec.H1,HamletSpec.H2,HamletSpec.H3,HamletSpec.H4,HamletSpec.H5,HamletSpec.H6,HamletSpec.I,HamletSpec.Inline,HamletSpec.INS,HamletSpec.KBD,HamletSpec.LABEL,HamletSpec.LEGEND,HamletSpec.LI,HamletSpec.OBJECT,HamletSpec.P,HamletSpec.PRE,HamletSpec.Q,HamletSpec.SAMP,HamletSpec.SMALL,HamletSpec.SPAN,HamletSpec.STRONG,HamletSpec.SUB,HamletSpec.SUP,HamletSpec.TD,HamletSpec.TH,HamletSpec.VAR
- All Known Implementing Classes:
Hamlet.A,Hamlet.ABBR,Hamlet.ACRONYM,Hamlet.ADDRESS,Hamlet.B,Hamlet.BDO,Hamlet.CAPTION,Hamlet.CITE,Hamlet.CODE,Hamlet.DD,Hamlet.DEL,Hamlet.DFN,Hamlet.DIV,Hamlet.DT,Hamlet.EM,Hamlet.FIELDSET,Hamlet.H1,Hamlet.H2,Hamlet.H3,Hamlet.H4,Hamlet.H5,Hamlet.H6,Hamlet.I,Hamlet.INS,Hamlet.KBD,Hamlet.LABEL,Hamlet.LEGEND,Hamlet.LI,Hamlet.OBJECT,Hamlet.P,Hamlet.PRE,Hamlet.Q,Hamlet.SAMP,Hamlet.SMALL,Hamlet.SPAN,Hamlet.STRONG,Hamlet.SUB,Hamlet.SUP,Hamlet.TD,Hamlet.TH,Hamlet.VAR
- Enclosing class:
- HamletSpec
public static interface HamletSpec._FormCtrl
-
Method Summary
Modifier and TypeMethodDescriptionbutton()Add a BUTTON element.Add a BUTTON element.Add a complete BUTTON element.input()Add a INPUT element.Add a INPUT element.select()Add a SELECT element.Add a SELECT element.textarea()Add a TEXTAREA element.Add a TEXTAREA element.Add a complete TEXTAREA element.
-
Method Details
-
input
HamletSpec.INPUT input()Add a INPUT element.- Returns:
- a new INPUT element builder
-
input
Add a INPUT element.- Parameters:
selector- the css selector in the form of (#id)*(.class)*- Returns:
- a new INPUT element builder
-
select
HamletSpec.SELECT select()Add a SELECT element.- Returns:
- a new SELECT element builder
-
select
Add a SELECT element.- Parameters:
selector- the css selector in the form of (#id)*(.class)*- Returns:
- a new SELECT element builder
-
textarea
HamletSpec.TEXTAREA textarea()Add a TEXTAREA element.- Returns:
- a new TEXTAREA element builder
-
textarea
Add a TEXTAREA element.- Parameters:
selector- the css selector in the form of (#id)*(.class)*- Returns:
- a new TEXTAREA element builder
-
textarea
Add a complete TEXTAREA element.- Parameters:
selector- the css selector in the form of (#id)*(.class)*cdata- the content- Returns:
- the current element builder
-
button
HamletSpec.BUTTON button()Add a BUTTON element.- Returns:
- a new BUTTON element builder
-
button
Add a BUTTON element.- Parameters:
selector- the css selector in the form of (#id)*(.class)*- Returns:
- a new BUTTON element builder
-
button
Add a complete BUTTON element.- Parameters:
selector- the css selector in the form of (#id)*(.class)*cdata- the content- Returns:
- the current element builder
-