public class Button
extends AbstractFormField
A pojo representing a button element
  • Field Details

    • content

      private String content
      Inner content of the button
    • formAction

      private String formAction
      The formaction attribute of the button
    • formEnctype

      private String formEnctype
      The formenctype attribute of the button
    • formMethod

      private String formMethod
      The formmethod attribute of the button
    • formNoValidate

      private Boolean formNoValidate
      The formnovalidate attribute of the button
    • formTarget

      private String formTarget
      The formtarget attribute of the button
    • type

      private String type
      The type attribute of the button
    • value

      private String value
      The value attribute of the button
  • Constructor Details

  • Method Details

    • builder

      public static Button.ButtonBuilder builder()
    • setContent

      public void setContent​(String content)
    • setFormAction

      public void setFormAction​(String formAction)
    • setFormEnctype

      public void setFormEnctype​(String formEnctype)
    • setFormMethod

      public void setFormMethod​(String formMethod)
    • setFormNoValidate

      public void setFormNoValidate​(Boolean formNoValidate)
    • setFormTarget

      public void setFormTarget​(String formTarget)
    • setType

      public void setType​(String type)
    • setValue

      public void setValue​(String value)
    • getContent

      public String getContent()
    • getFormAction

      public String getFormAction()
    • getFormEnctype

      public String getFormEnctype()
    • getFormMethod

      public String getFormMethod()
    • getFormNoValidate

      public Boolean getFormNoValidate()
    • getFormTarget

      public String getFormTarget()
    • getType

      public String getType()
    • getValue

      public String getValue()