org.mixer2.jaxb.xhtml.Input Maven / Gradle / Ivy
Show all versions of mixer2 Show documentation
package org.mixer2.jaxb.xhtml;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyAttribute;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlIDREF;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.namespace.QName;
import org.mixer2.xhtml.AbstractJaxb;
/**
* 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">
* <attGroup ref="{http://www.w3.org/1999/xhtml}attrs"/>
* <attribute name="accept" type="{http://www.w3.org/1999/xhtml}ContentTypes" />
* <attribute name="align" type="{http://www.w3.org/1999/xhtml}ImgAlign" />
* <attribute name="alt" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <attribute name="autocomplete" default="default">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="on"/>
* <enumeration value="off"/>
* <enumeration value="default"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="autofocus">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="autofocus"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="checked">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="checked"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="disabled">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="disabled"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="dirname" type="{http://www.w3.org/1999/xhtml}Text" />
* <attribute name="form" type="{http://www.w3.org/2001/XMLSchema}IDREF" />
* <attribute name="formaction" type="{http://www.w3.org/1999/xhtml}URI" />
* <attribute name="formenctype" default="application/x-www-form-urlencoded">
* <simpleType>
* <restriction base="{http://www.w3.org/1999/xhtml}ContentType">
* <enumeration value="application/x-www-form-urlencoded"/>
* <enumeration value="multipart/form-data"/>
* <enumeration value="text/plain"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="formmethod" default="get">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="get"/>
* <enumeration value="post"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="formnovalidate">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="formnovalidate"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="formtarget" type="{http://www.w3.org/1999/xhtml}FrameTarget" />
* <attribute name="height" type="{http://www.w3.org/1999/xhtml}Pixels" />
* <attribute name="width" type="{http://www.w3.org/1999/xhtml}Pixels" />
* <attribute name="list" type="{http://www.w3.org/2001/XMLSchema}IDREF" />
* <attribute name="maxlength" type="{http://www.w3.org/1999/xhtml}Number" />
* <attribute name="max" type="{http://www.w3.org/1999/xhtml}Number" />
* <attribute name="min" type="{http://www.w3.org/1999/xhtml}Number" />
* <attribute name="multiple">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="multiple"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
* <attribute name="pattern" type="{http://www.w3.org/1999/xhtml}Text" />
* <attribute name="placeholder" type="{http://www.w3.org/1999/xhtml}Text" />
* <attribute name="readonly">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="readonly"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="required">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="required"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="size" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <attribute name="src" type="{http://www.w3.org/1999/xhtml}URI" />
* <attribute name="step" type="{http://www.w3.org/1999/xhtml}Text" />
* <attribute name="type" type="{http://www.w3.org/1999/xhtml}InputType" default="text" />
* <attribute name="usemap" type="{http://www.w3.org/1999/xhtml}URI" />
* <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "input")
public class Input
extends AbstractJaxb
implements Serializable
{
private final static long serialVersionUID = 10000L;
@XmlAttribute
protected String accept;
@XmlAttribute
protected ImgAlign align;
@XmlAttribute
@XmlSchemaType(name = "anySimpleType")
protected String alt;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String autocomplete;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String autofocus;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String checked;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String disabled;
@XmlAttribute
protected String dirname;
@XmlAttribute
@XmlIDREF
@XmlSchemaType(name = "IDREF")
protected java.lang.Object form;
@XmlAttribute
protected String formaction;
@XmlAttribute
protected String formenctype;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String formmethod;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String formnovalidate;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String formtarget;
@XmlAttribute
@XmlJavaTypeAdapter(Adapter1 .class)
protected Integer height;
@XmlAttribute
@XmlJavaTypeAdapter(Adapter1 .class)
protected Integer width;
@XmlAttribute
@XmlIDREF
@XmlSchemaType(name = "IDREF")
protected java.lang.Object list;
@XmlAttribute
@XmlJavaTypeAdapter(Adapter1 .class)
protected Integer maxlength;
@XmlAttribute
@XmlJavaTypeAdapter(Adapter1 .class)
protected Integer max;
@XmlAttribute
@XmlJavaTypeAdapter(Adapter1 .class)
protected Integer min;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String multiple;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected String name;
@XmlAttribute
protected String pattern;
@XmlAttribute
protected String placeholder;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String readonly;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String required;
@XmlAttribute
@XmlSchemaType(name = "anySimpleType")
protected String size;
@XmlAttribute
protected String src;
@XmlAttribute
protected String step;
@XmlAttribute
protected InputType type;
@XmlAttribute
protected String usemap;
@XmlAttribute
@XmlSchemaType(name = "anySimpleType")
protected String value;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
@XmlAttribute(name = "class")
@XmlSchemaType(name = "NMTOKENS")
protected List cssClass;
@XmlAttribute
protected String style;
@XmlAttribute
protected String title;
@XmlAttribute
protected String accesskey;
@XmlAttribute
protected Boolean contenteditable;
@XmlAttribute
protected String contextmenu;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String dir;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String draggable;
@XmlAttribute
protected List dropzone;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String hidden;
@XmlAttribute(name = "lang")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String langCode;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected String role;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String spellcheck;
@XmlAttribute
@XmlJavaTypeAdapter(Adapter1 .class)
protected Integer tabindex;
@XmlAttribute(namespace = "http://www.w3.org/XML/1998/namespace")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "language")
protected String lang;
@XmlAttribute
protected String onclick;
@XmlAttribute
protected String ondblclick;
@XmlAttribute
protected String onmousedown;
@XmlAttribute
protected String onmouseup;
@XmlAttribute
protected String onmouseover;
@XmlAttribute
protected String onmousemove;
@XmlAttribute
protected String onmouseout;
@XmlAttribute
protected String onkeypress;
@XmlAttribute
protected String onkeydown;
@XmlAttribute
protected String onkeyup;
@XmlAttribute
protected String onabort;
@XmlAttribute
protected String onblur;
@XmlAttribute
protected String oncanplay;
@XmlAttribute
protected String oncanplaythrough;
@XmlAttribute
protected String onchange;
@XmlAttribute
protected String oncontextmenu;
@XmlAttribute
protected String oncuechange;
@XmlAttribute
protected String ondrag;
@XmlAttribute
protected String ondragend;
@XmlAttribute
protected String ondragenter;
@XmlAttribute
protected String ondragleave;
@XmlAttribute
protected String ondragover;
@XmlAttribute
protected String ondragstart;
@XmlAttribute
protected String ondrop;
@XmlAttribute
protected String ondurationchange;
@XmlAttribute
protected String onemptied;
@XmlAttribute
protected String onended;
@XmlAttribute
protected String onerror;
@XmlAttribute
protected String onfocus;
@XmlAttribute
protected String onformchange;
@XmlAttribute
protected String onforminput;
@XmlAttribute
protected String oninput;
@XmlAttribute
protected String oninvalid;
@XmlAttribute
protected String onload;
@XmlAttribute
protected String onloadeddata;
@XmlAttribute
protected String onloadedmetadata;
@XmlAttribute
protected String onloadstart;
@XmlAttribute
protected String onmousewheel;
@XmlAttribute
protected String onpause;
@XmlAttribute
protected String onplay;
@XmlAttribute
protected String onplaying;
@XmlAttribute
protected String onprogress;
@XmlAttribute
protected String onratechange;
@XmlAttribute
protected String onreadystatechange;
@XmlAttribute
protected String onreset;
@XmlAttribute
protected String onscroll;
@XmlAttribute
protected String onseeked;
@XmlAttribute
protected String onseeking;
@XmlAttribute
protected String onselect;
@XmlAttribute
protected String onshow;
@XmlAttribute
protected String onstalled;
@XmlAttribute
protected String onsubmit;
@XmlAttribute
protected String onsuspend;
@XmlAttribute
protected String ontimeupdate;
@XmlAttribute
protected String onvolumechange;
@XmlAttribute
protected String onwaiting;
@XmlAnyAttribute
private Map otherAttributes = new HashMap();
/**
* Gets the value of the accept property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccept() {
return accept;
}
/**
* Sets the value of the accept property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccept(String value) {
this.accept = value;
}
public boolean isSetAccept() {
return (this.accept!= null);
}
/**
* Gets the value of the align property.
*
* @return
* possible object is
* {@link ImgAlign }
*
*/
public ImgAlign getAlign() {
return align;
}
/**
* Sets the value of the align property.
*
* @param value
* allowed object is
* {@link ImgAlign }
*
*/
public void setAlign(ImgAlign value) {
this.align = value;
}
public boolean isSetAlign() {
return (this.align!= null);
}
/**
* Gets the value of the alt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAlt() {
return alt;
}
/**
* Sets the value of the alt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAlt(String value) {
this.alt = value;
}
public boolean isSetAlt() {
return (this.alt!= null);
}
/**
* Gets the value of the autocomplete property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAutocomplete() {
if (autocomplete == null) {
return "default";
} else {
return autocomplete;
}
}
/**
* Sets the value of the autocomplete property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAutocomplete(String value) {
this.autocomplete = value;
}
public boolean isSetAutocomplete() {
return (this.autocomplete!= null);
}
/**
* Gets the value of the autofocus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAutofocus() {
return autofocus;
}
/**
* Sets the value of the autofocus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAutofocus(String value) {
this.autofocus = value;
}
public boolean isSetAutofocus() {
return (this.autofocus!= null);
}
/**
* Gets the value of the checked property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getChecked() {
return checked;
}
/**
* Sets the value of the checked property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setChecked(String value) {
this.checked = value;
}
public boolean isSetChecked() {
return (this.checked!= null);
}
/**
* Gets the value of the disabled property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDisabled() {
return disabled;
}
/**
* Sets the value of the disabled property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDisabled(String value) {
this.disabled = value;
}
public boolean isSetDisabled() {
return (this.disabled!= null);
}
/**
* Gets the value of the dirname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDirname() {
return dirname;
}
/**
* Sets the value of the dirname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDirname(String value) {
this.dirname = value;
}
public boolean isSetDirname() {
return (this.dirname!= null);
}
/**
* Gets the value of the form property.
*
* @return
* possible object is
* {@link java.lang.Object }
*
*/
public java.lang.Object getForm() {
return form;
}
/**
* Sets the value of the form property.
*
* @param value
* allowed object is
* {@link java.lang.Object }
*
*/
public void setForm(java.lang.Object value) {
this.form = value;
}
public boolean isSetForm() {
return (this.form!= null);
}
/**
* Gets the value of the formaction property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFormaction() {
return formaction;
}
/**
* Sets the value of the formaction property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFormaction(String value) {
this.formaction = value;
}
public boolean isSetFormaction() {
return (this.formaction!= null);
}
/**
* Gets the value of the formenctype property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFormenctype() {
if (formenctype == null) {
return "application/x-www-form-urlencoded";
} else {
return formenctype;
}
}
/**
* Sets the value of the formenctype property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFormenctype(String value) {
this.formenctype = value;
}
public boolean isSetFormenctype() {
return (this.formenctype!= null);
}
/**
* Gets the value of the formmethod property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFormmethod() {
if (formmethod == null) {
return "get";
} else {
return formmethod;
}
}
/**
* Sets the value of the formmethod property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFormmethod(String value) {
this.formmethod = value;
}
public boolean isSetFormmethod() {
return (this.formmethod!= null);
}
/**
* Gets the value of the formnovalidate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFormnovalidate() {
return formnovalidate;
}
/**
* Sets the value of the formnovalidate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFormnovalidate(String value) {
this.formnovalidate = value;
}
public boolean isSetFormnovalidate() {
return (this.formnovalidate!= null);
}
/**
* Gets the value of the formtarget property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFormtarget() {
return formtarget;
}
/**
* Sets the value of the formtarget property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFormtarget(String value) {
this.formtarget = value;
}
public boolean isSetFormtarget() {
return (this.formtarget!= null);
}
/**
* Gets the value of the height property.
*
* @return
* possible object is
* {@link String }
*
*/
public Integer getHeight() {
return height;
}
/**
* Sets the value of the height property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHeight(Integer value) {
this.height = value;
}
public boolean isSetHeight() {
return (this.height!= null);
}
/**
* Gets the value of the width property.
*
* @return
* possible object is
* {@link String }
*
*/
public Integer getWidth() {
return width;
}
/**
* Sets the value of the width property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWidth(Integer value) {
this.width = value;
}
public boolean isSetWidth() {
return (this.width!= null);
}
/**
* Gets the value of the list property.
*
* @return
* possible object is
* {@link java.lang.Object }
*
*/
public java.lang.Object getList() {
return list;
}
/**
* Sets the value of the list property.
*
* @param value
* allowed object is
* {@link java.lang.Object }
*
*/
public void setList(java.lang.Object value) {
this.list = value;
}
public boolean isSetList() {
return (this.list!= null);
}
/**
* Gets the value of the maxlength property.
*
* @return
* possible object is
* {@link String }
*
*/
public Integer getMaxlength() {
return maxlength;
}
/**
* Sets the value of the maxlength property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMaxlength(Integer value) {
this.maxlength = value;
}
public boolean isSetMaxlength() {
return (this.maxlength!= null);
}
/**
* Gets the value of the max property.
*
* @return
* possible object is
* {@link String }
*
*/
public Integer getMax() {
return max;
}
/**
* Sets the value of the max property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMax(Integer value) {
this.max = value;
}
public boolean isSetMax() {
return (this.max!= null);
}
/**
* Gets the value of the min property.
*
* @return
* possible object is
* {@link String }
*
*/
public Integer getMin() {
return min;
}
/**
* Sets the value of the min property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMin(Integer value) {
this.min = value;
}
public boolean isSetMin() {
return (this.min!= null);
}
/**
* Gets the value of the multiple property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMultiple() {
return multiple;
}
/**
* Sets the value of the multiple property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMultiple(String value) {
this.multiple = value;
}
public boolean isSetMultiple() {
return (this.multiple!= null);
}
/**
* 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;
}
public boolean isSetName() {
return (this.name!= null);
}
/**
* Gets the value of the pattern property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPattern() {
return pattern;
}
/**
* Sets the value of the pattern property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPattern(String value) {
this.pattern = value;
}
public boolean isSetPattern() {
return (this.pattern!= null);
}
/**
* Gets the value of the placeholder property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPlaceholder() {
return placeholder;
}
/**
* Sets the value of the placeholder property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPlaceholder(String value) {
this.placeholder = value;
}
public boolean isSetPlaceholder() {
return (this.placeholder!= null);
}
/**
* Gets the value of the readonly property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReadonly() {
return readonly;
}
/**
* Sets the value of the readonly property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReadonly(String value) {
this.readonly = value;
}
public boolean isSetReadonly() {
return (this.readonly!= null);
}
/**
* Gets the value of the required property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRequired() {
return required;
}
/**
* Sets the value of the required property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRequired(String value) {
this.required = value;
}
public boolean isSetRequired() {
return (this.required!= null);
}
/**
* Gets the value of the size property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSize() {
return size;
}
/**
* Sets the value of the size property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSize(String value) {
this.size = value;
}
public boolean isSetSize() {
return (this.size!= null);
}
/**
* Gets the value of the src property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSrc() {
return src;
}
/**
* Sets the value of the src property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSrc(String value) {
this.src = value;
}
public boolean isSetSrc() {
return (this.src!= null);
}
/**
* Gets the value of the step property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStep() {
return step;
}
/**
* Sets the value of the step property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStep(String value) {
this.step = value;
}
public boolean isSetStep() {
return (this.step!= null);
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link InputType }
*
*/
public InputType getType() {
if (type == null) {
return InputType.TEXT;
} else {
return type;
}
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link InputType }
*
*/
public void setType(InputType value) {
this.type = value;
}
public boolean isSetType() {
return (this.type!= null);
}
/**
* Gets the value of the usemap property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUsemap() {
return usemap;
}
/**
* Sets the value of the usemap property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUsemap(String value) {
this.usemap = value;
}
public boolean isSetUsemap() {
return (this.usemap!= null);
}
/**
* 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;
}
public boolean isSetValue() {
return (this.value!= null);
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
public boolean isSetId() {
return (this.id!= null);
}
/**
* Gets the value of the cssClass 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 cssClass property.
*
*
* For example, to add a new item, do as follows:
*
* getCssClass().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getCssClass() {
if (cssClass == null) {
cssClass = new ArrayList();
}
return this.cssClass;
}
public boolean isSetCssClass() {
return ((this.cssClass!= null)&&(!this.cssClass.isEmpty()));
}
public void unsetCssClass() {
this.cssClass = null;
}
/**
* Gets the value of the style property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStyle() {
return style;
}
/**
* Sets the value of the style property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStyle(String value) {
this.style = value;
}
public boolean isSetStyle() {
return (this.style!= null);
}
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTitle(String value) {
this.title = value;
}
public boolean isSetTitle() {
return (this.title!= null);
}
/**
* Gets the value of the accesskey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccesskey() {
return accesskey;
}
/**
* Sets the value of the accesskey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccesskey(String value) {
this.accesskey = value;
}
public boolean isSetAccesskey() {
return (this.accesskey!= null);
}
/**
* Gets the value of the contenteditable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isContenteditable() {
return contenteditable;
}
/**
* Sets the value of the contenteditable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setContenteditable(boolean value) {
this.contenteditable = value;
}
public boolean isSetContenteditable() {
return (this.contenteditable!= null);
}
public void unsetContenteditable() {
this.contenteditable = null;
}
/**
* Gets the value of the contextmenu property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContextmenu() {
return contextmenu;
}
/**
* Sets the value of the contextmenu property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContextmenu(String value) {
this.contextmenu = value;
}
public boolean isSetContextmenu() {
return (this.contextmenu!= null);
}
/**
* Gets the value of the dir property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDir() {
if (dir == null) {
return "auto";
} else {
return dir;
}
}
/**
* Sets the value of the dir property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDir(String value) {
this.dir = value;
}
public boolean isSetDir() {
return (this.dir!= null);
}
/**
* Gets the value of the draggable property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDraggable() {
if (draggable == null) {
return "auto";
} else {
return draggable;
}
}
/**
* Sets the value of the draggable property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDraggable(String value) {
this.draggable = value;
}
public boolean isSetDraggable() {
return (this.draggable!= null);
}
/**
* Gets the value of the dropzone 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 dropzone property.
*
*
* For example, to add a new item, do as follows:
*
* getDropzone().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getDropzone() {
if (dropzone == null) {
dropzone = new ArrayList();
}
return this.dropzone;
}
public boolean isSetDropzone() {
return ((this.dropzone!= null)&&(!this.dropzone.isEmpty()));
}
public void unsetDropzone() {
this.dropzone = null;
}
/**
* Gets the value of the hidden property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHidden() {
return hidden;
}
/**
* Sets the value of the hidden property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHidden(String value) {
this.hidden = value;
}
public boolean isSetHidden() {
return (this.hidden!= null);
}
/**
* Gets the value of the langCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLangCode() {
return langCode;
}
/**
* Sets the value of the langCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLangCode(String value) {
this.langCode = value;
}
public boolean isSetLangCode() {
return (this.langCode!= null);
}
/**
* Gets the value of the role property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRole() {
return role;
}
/**
* Sets the value of the role property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRole(String value) {
this.role = value;
}
public boolean isSetRole() {
return (this.role!= null);
}
/**
* Gets the value of the spellcheck property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSpellcheck() {
return spellcheck;
}
/**
* Sets the value of the spellcheck property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSpellcheck(String value) {
this.spellcheck = value;
}
public boolean isSetSpellcheck() {
return (this.spellcheck!= null);
}
/**
* Gets the value of the tabindex property.
*
* @return
* possible object is
* {@link String }
*
*/
public Integer getTabindex() {
return tabindex;
}
/**
* Sets the value of the tabindex property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTabindex(Integer value) {
this.tabindex = value;
}
public boolean isSetTabindex() {
return (this.tabindex!= null);
}
/**
* Gets the value of the lang property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLang() {
return lang;
}
/**
* Sets the value of the lang property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLang(String value) {
this.lang = value;
}
public boolean isSetLang() {
return (this.lang!= null);
}
/**
* Gets the value of the onclick property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnclick() {
return onclick;
}
/**
* Sets the value of the onclick property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnclick(String value) {
this.onclick = value;
}
public boolean isSetOnclick() {
return (this.onclick!= null);
}
/**
* Gets the value of the ondblclick property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOndblclick() {
return ondblclick;
}
/**
* Sets the value of the ondblclick property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOndblclick(String value) {
this.ondblclick = value;
}
public boolean isSetOndblclick() {
return (this.ondblclick!= null);
}
/**
* Gets the value of the onmousedown property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnmousedown() {
return onmousedown;
}
/**
* Sets the value of the onmousedown property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnmousedown(String value) {
this.onmousedown = value;
}
public boolean isSetOnmousedown() {
return (this.onmousedown!= null);
}
/**
* Gets the value of the onmouseup property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnmouseup() {
return onmouseup;
}
/**
* Sets the value of the onmouseup property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnmouseup(String value) {
this.onmouseup = value;
}
public boolean isSetOnmouseup() {
return (this.onmouseup!= null);
}
/**
* Gets the value of the onmouseover property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnmouseover() {
return onmouseover;
}
/**
* Sets the value of the onmouseover property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnmouseover(String value) {
this.onmouseover = value;
}
public boolean isSetOnmouseover() {
return (this.onmouseover!= null);
}
/**
* Gets the value of the onmousemove property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnmousemove() {
return onmousemove;
}
/**
* Sets the value of the onmousemove property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnmousemove(String value) {
this.onmousemove = value;
}
public boolean isSetOnmousemove() {
return (this.onmousemove!= null);
}
/**
* Gets the value of the onmouseout property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnmouseout() {
return onmouseout;
}
/**
* Sets the value of the onmouseout property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnmouseout(String value) {
this.onmouseout = value;
}
public boolean isSetOnmouseout() {
return (this.onmouseout!= null);
}
/**
* Gets the value of the onkeypress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnkeypress() {
return onkeypress;
}
/**
* Sets the value of the onkeypress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnkeypress(String value) {
this.onkeypress = value;
}
public boolean isSetOnkeypress() {
return (this.onkeypress!= null);
}
/**
* Gets the value of the onkeydown property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnkeydown() {
return onkeydown;
}
/**
* Sets the value of the onkeydown property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnkeydown(String value) {
this.onkeydown = value;
}
public boolean isSetOnkeydown() {
return (this.onkeydown!= null);
}
/**
* Gets the value of the onkeyup property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnkeyup() {
return onkeyup;
}
/**
* Sets the value of the onkeyup property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnkeyup(String value) {
this.onkeyup = value;
}
public boolean isSetOnkeyup() {
return (this.onkeyup!= null);
}
/**
* Gets the value of the onabort property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnabort() {
return onabort;
}
/**
* Sets the value of the onabort property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnabort(String value) {
this.onabort = value;
}
public boolean isSetOnabort() {
return (this.onabort!= null);
}
/**
* Gets the value of the onblur property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnblur() {
return onblur;
}
/**
* Sets the value of the onblur property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnblur(String value) {
this.onblur = value;
}
public boolean isSetOnblur() {
return (this.onblur!= null);
}
/**
* Gets the value of the oncanplay property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOncanplay() {
return oncanplay;
}
/**
* Sets the value of the oncanplay property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOncanplay(String value) {
this.oncanplay = value;
}
public boolean isSetOncanplay() {
return (this.oncanplay!= null);
}
/**
* Gets the value of the oncanplaythrough property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOncanplaythrough() {
return oncanplaythrough;
}
/**
* Sets the value of the oncanplaythrough property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOncanplaythrough(String value) {
this.oncanplaythrough = value;
}
public boolean isSetOncanplaythrough() {
return (this.oncanplaythrough!= null);
}
/**
* Gets the value of the onchange property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnchange() {
return onchange;
}
/**
* Sets the value of the onchange property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnchange(String value) {
this.onchange = value;
}
public boolean isSetOnchange() {
return (this.onchange!= null);
}
/**
* Gets the value of the oncontextmenu property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOncontextmenu() {
return oncontextmenu;
}
/**
* Sets the value of the oncontextmenu property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOncontextmenu(String value) {
this.oncontextmenu = value;
}
public boolean isSetOncontextmenu() {
return (this.oncontextmenu!= null);
}
/**
* Gets the value of the oncuechange property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOncuechange() {
return oncuechange;
}
/**
* Sets the value of the oncuechange property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOncuechange(String value) {
this.oncuechange = value;
}
public boolean isSetOncuechange() {
return (this.oncuechange!= null);
}
/**
* Gets the value of the ondrag property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOndrag() {
return ondrag;
}
/**
* Sets the value of the ondrag property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOndrag(String value) {
this.ondrag = value;
}
public boolean isSetOndrag() {
return (this.ondrag!= null);
}
/**
* Gets the value of the ondragend property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOndragend() {
return ondragend;
}
/**
* Sets the value of the ondragend property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOndragend(String value) {
this.ondragend = value;
}
public boolean isSetOndragend() {
return (this.ondragend!= null);
}
/**
* Gets the value of the ondragenter property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOndragenter() {
return ondragenter;
}
/**
* Sets the value of the ondragenter property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOndragenter(String value) {
this.ondragenter = value;
}
public boolean isSetOndragenter() {
return (this.ondragenter!= null);
}
/**
* Gets the value of the ondragleave property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOndragleave() {
return ondragleave;
}
/**
* Sets the value of the ondragleave property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOndragleave(String value) {
this.ondragleave = value;
}
public boolean isSetOndragleave() {
return (this.ondragleave!= null);
}
/**
* Gets the value of the ondragover property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOndragover() {
return ondragover;
}
/**
* Sets the value of the ondragover property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOndragover(String value) {
this.ondragover = value;
}
public boolean isSetOndragover() {
return (this.ondragover!= null);
}
/**
* Gets the value of the ondragstart property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOndragstart() {
return ondragstart;
}
/**
* Sets the value of the ondragstart property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOndragstart(String value) {
this.ondragstart = value;
}
public boolean isSetOndragstart() {
return (this.ondragstart!= null);
}
/**
* Gets the value of the ondrop property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOndrop() {
return ondrop;
}
/**
* Sets the value of the ondrop property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOndrop(String value) {
this.ondrop = value;
}
public boolean isSetOndrop() {
return (this.ondrop!= null);
}
/**
* Gets the value of the ondurationchange property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOndurationchange() {
return ondurationchange;
}
/**
* Sets the value of the ondurationchange property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOndurationchange(String value) {
this.ondurationchange = value;
}
public boolean isSetOndurationchange() {
return (this.ondurationchange!= null);
}
/**
* Gets the value of the onemptied property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnemptied() {
return onemptied;
}
/**
* Sets the value of the onemptied property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnemptied(String value) {
this.onemptied = value;
}
public boolean isSetOnemptied() {
return (this.onemptied!= null);
}
/**
* Gets the value of the onended property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnended() {
return onended;
}
/**
* Sets the value of the onended property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnended(String value) {
this.onended = value;
}
public boolean isSetOnended() {
return (this.onended!= null);
}
/**
* Gets the value of the onerror property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnerror() {
return onerror;
}
/**
* Sets the value of the onerror property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnerror(String value) {
this.onerror = value;
}
public boolean isSetOnerror() {
return (this.onerror!= null);
}
/**
* Gets the value of the onfocus property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnfocus() {
return onfocus;
}
/**
* Sets the value of the onfocus property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnfocus(String value) {
this.onfocus = value;
}
public boolean isSetOnfocus() {
return (this.onfocus!= null);
}
/**
* Gets the value of the onformchange property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnformchange() {
return onformchange;
}
/**
* Sets the value of the onformchange property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnformchange(String value) {
this.onformchange = value;
}
public boolean isSetOnformchange() {
return (this.onformchange!= null);
}
/**
* Gets the value of the onforminput property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnforminput() {
return onforminput;
}
/**
* Sets the value of the onforminput property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnforminput(String value) {
this.onforminput = value;
}
public boolean isSetOnforminput() {
return (this.onforminput!= null);
}
/**
* Gets the value of the oninput property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOninput() {
return oninput;
}
/**
* Sets the value of the oninput property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOninput(String value) {
this.oninput = value;
}
public boolean isSetOninput() {
return (this.oninput!= null);
}
/**
* Gets the value of the oninvalid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOninvalid() {
return oninvalid;
}
/**
* Sets the value of the oninvalid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOninvalid(String value) {
this.oninvalid = value;
}
public boolean isSetOninvalid() {
return (this.oninvalid!= null);
}
/**
* Gets the value of the onload property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnload() {
return onload;
}
/**
* Sets the value of the onload property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnload(String value) {
this.onload = value;
}
public boolean isSetOnload() {
return (this.onload!= null);
}
/**
* Gets the value of the onloadeddata property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnloadeddata() {
return onloadeddata;
}
/**
* Sets the value of the onloadeddata property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnloadeddata(String value) {
this.onloadeddata = value;
}
public boolean isSetOnloadeddata() {
return (this.onloadeddata!= null);
}
/**
* Gets the value of the onloadedmetadata property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnloadedmetadata() {
return onloadedmetadata;
}
/**
* Sets the value of the onloadedmetadata property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnloadedmetadata(String value) {
this.onloadedmetadata = value;
}
public boolean isSetOnloadedmetadata() {
return (this.onloadedmetadata!= null);
}
/**
* Gets the value of the onloadstart property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnloadstart() {
return onloadstart;
}
/**
* Sets the value of the onloadstart property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnloadstart(String value) {
this.onloadstart = value;
}
public boolean isSetOnloadstart() {
return (this.onloadstart!= null);
}
/**
* Gets the value of the onmousewheel property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnmousewheel() {
return onmousewheel;
}
/**
* Sets the value of the onmousewheel property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnmousewheel(String value) {
this.onmousewheel = value;
}
public boolean isSetOnmousewheel() {
return (this.onmousewheel!= null);
}
/**
* Gets the value of the onpause property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnpause() {
return onpause;
}
/**
* Sets the value of the onpause property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnpause(String value) {
this.onpause = value;
}
public boolean isSetOnpause() {
return (this.onpause!= null);
}
/**
* Gets the value of the onplay property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnplay() {
return onplay;
}
/**
* Sets the value of the onplay property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnplay(String value) {
this.onplay = value;
}
public boolean isSetOnplay() {
return (this.onplay!= null);
}
/**
* Gets the value of the onplaying property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnplaying() {
return onplaying;
}
/**
* Sets the value of the onplaying property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnplaying(String value) {
this.onplaying = value;
}
public boolean isSetOnplaying() {
return (this.onplaying!= null);
}
/**
* Gets the value of the onprogress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnprogress() {
return onprogress;
}
/**
* Sets the value of the onprogress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnprogress(String value) {
this.onprogress = value;
}
public boolean isSetOnprogress() {
return (this.onprogress!= null);
}
/**
* Gets the value of the onratechange property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnratechange() {
return onratechange;
}
/**
* Sets the value of the onratechange property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnratechange(String value) {
this.onratechange = value;
}
public boolean isSetOnratechange() {
return (this.onratechange!= null);
}
/**
* Gets the value of the onreadystatechange property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnreadystatechange() {
return onreadystatechange;
}
/**
* Sets the value of the onreadystatechange property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnreadystatechange(String value) {
this.onreadystatechange = value;
}
public boolean isSetOnreadystatechange() {
return (this.onreadystatechange!= null);
}
/**
* Gets the value of the onreset property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnreset() {
return onreset;
}
/**
* Sets the value of the onreset property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnreset(String value) {
this.onreset = value;
}
public boolean isSetOnreset() {
return (this.onreset!= null);
}
/**
* Gets the value of the onscroll property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnscroll() {
return onscroll;
}
/**
* Sets the value of the onscroll property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnscroll(String value) {
this.onscroll = value;
}
public boolean isSetOnscroll() {
return (this.onscroll!= null);
}
/**
* Gets the value of the onseeked property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnseeked() {
return onseeked;
}
/**
* Sets the value of the onseeked property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnseeked(String value) {
this.onseeked = value;
}
public boolean isSetOnseeked() {
return (this.onseeked!= null);
}
/**
* Gets the value of the onseeking property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnseeking() {
return onseeking;
}
/**
* Sets the value of the onseeking property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnseeking(String value) {
this.onseeking = value;
}
public boolean isSetOnseeking() {
return (this.onseeking!= null);
}
/**
* Gets the value of the onselect property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnselect() {
return onselect;
}
/**
* Sets the value of the onselect property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnselect(String value) {
this.onselect = value;
}
public boolean isSetOnselect() {
return (this.onselect!= null);
}
/**
* Gets the value of the onshow property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnshow() {
return onshow;
}
/**
* Sets the value of the onshow property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnshow(String value) {
this.onshow = value;
}
public boolean isSetOnshow() {
return (this.onshow!= null);
}
/**
* Gets the value of the onstalled property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnstalled() {
return onstalled;
}
/**
* Sets the value of the onstalled property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnstalled(String value) {
this.onstalled = value;
}
public boolean isSetOnstalled() {
return (this.onstalled!= null);
}
/**
* Gets the value of the onsubmit property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnsubmit() {
return onsubmit;
}
/**
* Sets the value of the onsubmit property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnsubmit(String value) {
this.onsubmit = value;
}
public boolean isSetOnsubmit() {
return (this.onsubmit!= null);
}
/**
* Gets the value of the onsuspend property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnsuspend() {
return onsuspend;
}
/**
* Sets the value of the onsuspend property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnsuspend(String value) {
this.onsuspend = value;
}
public boolean isSetOnsuspend() {
return (this.onsuspend!= null);
}
/**
* Gets the value of the ontimeupdate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOntimeupdate() {
return ontimeupdate;
}
/**
* Sets the value of the ontimeupdate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOntimeupdate(String value) {
this.ontimeupdate = value;
}
public boolean isSetOntimeupdate() {
return (this.ontimeupdate!= null);
}
/**
* Gets the value of the onvolumechange property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnvolumechange() {
return onvolumechange;
}
/**
* Sets the value of the onvolumechange property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnvolumechange(String value) {
this.onvolumechange = value;
}
public boolean isSetOnvolumechange() {
return (this.onvolumechange!= null);
}
/**
* Gets the value of the onwaiting property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOnwaiting() {
return onwaiting;
}
/**
* Sets the value of the onwaiting property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOnwaiting(String value) {
this.onwaiting = value;
}
public boolean isSetOnwaiting() {
return (this.onwaiting!= null);
}
/**
* Gets a map that contains attributes that aren't bound to any typed property on this class.
*
*
* the map is keyed by the name of the attribute and
* the value is the string value of the attribute.
*
* the map returned by this method is live, and you can add new attribute
* by updating the map directly. Because of this design, there's no setter.
*
*
* @return
* always non-null
*/
public Map getOtherAttributes() {
return otherAttributes;
}
}