//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.07.04 at 03:51:35 PM CEST
//
package sun.security.ssl.xml;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElements;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
*
Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <choice maxOccurs="unbounded" minOccurs="0">
* <element ref="{}field"/>
* <element ref="{}block"/>
* </choice>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="showname" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="show" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="size" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="pos" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
* <attribute name="mask" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="showmap" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="showdtl" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"fieldOrBlock"
})
@XmlRootElement(name = "field")
public class Field {
@XmlElements({
@XmlElement(name = "field", type = Field.class),
@XmlElement(name = "block", type = Block.class)
})
protected List fieldOrBlock;
@XmlAttribute(name = "name", required = true)
protected String name;
@XmlAttribute(name = "showname")
protected String showname;
@XmlAttribute(name = "value", required = true)
protected String value;
@XmlAttribute(name = "show")
protected String show;
@XmlAttribute(name = "size", required = true)
protected int size;
@XmlAttribute(name = "pos", required = true)
protected int pos;
@XmlAttribute(name = "mask")
protected String mask;
@XmlAttribute(name = "showmap")
protected String showmap;
@XmlAttribute(name = "showdtl")
protected String showdtl;
/**
* Gets the value of the fieldOrBlock 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 JAXB object.
* This is why there is not a set
method for the fieldOrBlock property.
*
*
* For example, to add a new item, do as follows:
*
* getFieldOrBlock().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Field }
* {@link Block }
*
*
*/
public List getFieldOrBlock() {
if (fieldOrBlock == null) {
fieldOrBlock = new ArrayList();
}
return this.fieldOrBlock;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the showname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShowname() {
return showname;
}
/**
* Sets the value of the showname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShowname(String value) {
this.showname = value;
}
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Gets the value of the show property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShow() {
return show;
}
/**
* Sets the value of the show property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShow(String value) {
this.show = value;
}
/**
* Gets the value of the size property.
*
*/
public int getSize() {
return size;
}
/**
* Sets the value of the size property.
*
*/
public void setSize(int value) {
this.size = value;
}
/**
* Gets the value of the pos property.
*
*/
public int getPos() {
return pos;
}
/**
* Sets the value of the pos property.
*
*/
public void setPos(int value) {
this.pos = value;
}
/**
* Gets the value of the mask property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMask() {
return mask;
}
/**
* Sets the value of the mask property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMask(String value) {
this.mask = value;
}
/**
* Gets the value of the showmap property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShowmap() {
return showmap;
}
/**
* Sets the value of the showmap property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShowmap(String value) {
this.showmap = value;
}
/**
* Gets the value of the showdtl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShowdtl() {
return showdtl;
}
/**
* Sets the value of the showdtl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShowdtl(String value) {
this.showdtl = value;
}
}