Class ResetFormActionType
- java.lang.Object
-
- net.webpdf.wsclient.schema.operation.ActionEventType
-
- net.webpdf.wsclient.schema.operation.ResetFormActionType
-
public class ResetFormActionType extends ActionEventType
<?xml version="1.0" encoding="UTF-8"?><p xmlns:tns="http://schema.webpdf.de/1.0/operation" xmlns:xs="http://www.w3.org/2001/XMLSchema">The resetForm action clears the values in all selected form fields. You can use the "field" element as many times as necessary.</p>
Java class for ResetFormActionType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ResetFormActionType"> <complexContent> <extension base="{http://schema.webpdf.de/1.0/operation}ActionEventType"> <choice maxOccurs="unbounded"> <element name="field" type="{http://schema.webpdf.de/1.0/operation}FormFieldSelectionType"/> </choice> <attribute name="exclude" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Booleanexcludeprotected List<FormFieldSelectionType>field
-
Constructor Summary
Constructors Constructor Description ResetFormActionType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<FormFieldSelectionType>getField()Gets the value of the field property.booleanisExclude()Gets the value of the exclude property.booleanisSetExclude()booleanisSetField()voidsetExclude(boolean value)Sets the value of the exclude property.voidunsetExclude()voidunsetField()
-
-
-
Field Detail
-
field
protected List<FormFieldSelectionType> field
-
exclude
protected Boolean exclude
-
-
Method Detail
-
getField
public List<FormFieldSelectionType> getField()
Gets the value of the field property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the field property.For example, to add a new item, do as follows:
getField().add(newItem);Objects of the following type(s) are allowed in the list
FormFieldSelectionType- Returns:
- The value of the field property.
-
isSetField
public boolean isSetField()
-
unsetField
public void unsetField()
-
isExclude
public boolean isExclude()
Gets the value of the exclude property.- Returns:
- possible object is
Boolean
-
setExclude
public void setExclude(boolean value)
Sets the value of the exclude property.- Parameters:
value- allowed object isBoolean
-
isSetExclude
public boolean isSetExclude()
-
unsetExclude
public void unsetExclude()
-
-