org.w3._1999.xhtml.Input Maven / Gradle / Ivy
Show all versions of quick Show documentation
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2023.12.08 at 08:47:56 AM MST
//
package org.w3._1999.xhtml;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlID;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.jvnet.jaxb2_commons.lang.Equals2;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy2;
import org.jvnet.jaxb2_commons.lang.HashCode2;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy2;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.ToString2;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy2;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;
/**
* 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}focus"/>
* <attGroup ref="{http://www.w3.org/1999/xhtml}attrs"/>
* <attribute name="type" type="{http://www.w3.org/1999/xhtml}InputType" default="text" />
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <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="readonly">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="readonly"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="size" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <attribute name="maxlength" type="{http://www.w3.org/1999/xhtml}Number" />
* <attribute name="src" type="{http://www.w3.org/1999/xhtml}URI" />
* <attribute name="alt" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <attribute name="usemap" type="{http://www.w3.org/1999/xhtml}URI" />
* <attribute name="onselect" type="{http://www.w3.org/1999/xhtml}Script" />
* <attribute name="onchange" type="{http://www.w3.org/1999/xhtml}Script" />
* <attribute name="accept" type="{http://www.w3.org/1999/xhtml}ContentTypes" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "input")
public class Input implements Equals2, HashCode2, ToString2
{
@XmlAttribute(name = "type")
protected InputType type;
@XmlAttribute(name = "name")
@XmlSchemaType(name = "anySimpleType")
protected String name;
@XmlAttribute(name = "value")
@XmlSchemaType(name = "anySimpleType")
protected String value;
@XmlAttribute(name = "checked")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String checked;
@XmlAttribute(name = "disabled")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String disabled;
@XmlAttribute(name = "readonly")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String readonly;
@XmlAttribute(name = "size")
@XmlSchemaType(name = "anySimpleType")
protected String size;
@XmlAttribute(name = "maxlength")
protected BigInteger maxlength;
@XmlAttribute(name = "src")
protected String src;
@XmlAttribute(name = "alt")
@XmlSchemaType(name = "anySimpleType")
protected String alt;
@XmlAttribute(name = "usemap")
protected String usemap;
@XmlAttribute(name = "onselect")
protected String onselect;
@XmlAttribute(name = "onchange")
protected String onchange;
@XmlAttribute(name = "accept")
protected String accept;
@XmlAttribute(name = "accesskey")
protected String accesskey;
@XmlAttribute(name = "tabindex")
protected Integer tabindex;
@XmlAttribute(name = "onfocus")
protected String onfocus;
@XmlAttribute(name = "onblur")
protected String onblur;
@XmlAttribute(name = "lang")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String langAttribute;
@XmlAttribute(name = "lang", namespace = "http://www.w3.org/XML/1998/namespace")
protected String lang;
@XmlAttribute(name = "dir")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String dir;
@XmlAttribute(name = "onclick")
protected String onclick;
@XmlAttribute(name = "ondblclick")
protected String ondblclick;
@XmlAttribute(name = "onmousedown")
protected String onmousedown;
@XmlAttribute(name = "onmouseup")
protected String onmouseup;
@XmlAttribute(name = "onmouseover")
protected String onmouseover;
@XmlAttribute(name = "onmousemove")
protected String onmousemove;
@XmlAttribute(name = "onmouseout")
protected String onmouseout;
@XmlAttribute(name = "onkeypress")
protected String onkeypress;
@XmlAttribute(name = "onkeydown")
protected String onkeydown;
@XmlAttribute(name = "onkeyup")
protected String onkeyup;
@XmlAttribute(name = "id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String id;
@XmlAttribute(name = "class")
@XmlSchemaType(name = "NMTOKENS")
protected List clazz;
@XmlAttribute(name = "style")
protected String style;
@XmlAttribute(name = "title")
protected String title;
/**
* 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;
}
/**
* 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 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 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* Gets the value of the maxlength property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getMaxlength() {
return maxlength;
}
/**
* Sets the value of the maxlength property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setMaxlength(BigInteger value) {
this.maxlength = value;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* Gets the value of the tabindex property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getTabindex() {
return tabindex;
}
/**
* Sets the value of the tabindex property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setTabindex(Integer value) {
this.tabindex = value;
}
/**
* 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;
}
/**
* 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;
}
/**
* Gets the value of the langAttribute property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLangAttribute() {
return langAttribute;
}
/**
* Sets the value of the langAttribute property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLangAttribute(String value) {
this.langAttribute = value;
}
/**
* 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;
}
/**
* Gets the value of the dir property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDir() {
return dir;
}
/**
* Sets the value of the dir property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDir(String value) {
this.dir = value;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* 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;
}
/**
* Gets the value of the clazz 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 set
method for the clazz property.
*
*
* For example, to add a new item, do as follows:
*
* getClazz().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getClazz() {
if (clazz == null) {
clazz = new ArrayList();
}
return this.clazz;
}
/**
* 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;
}
/**
* 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 Input withType(InputType value) {
setType(value);
return this;
}
public Input withName(String value) {
setName(value);
return this;
}
public Input withValue(String value) {
setValue(value);
return this;
}
public Input withChecked(String value) {
setChecked(value);
return this;
}
public Input withDisabled(String value) {
setDisabled(value);
return this;
}
public Input withReadonly(String value) {
setReadonly(value);
return this;
}
public Input withSize(String value) {
setSize(value);
return this;
}
public Input withMaxlength(BigInteger value) {
setMaxlength(value);
return this;
}
public Input withSrc(String value) {
setSrc(value);
return this;
}
public Input withAlt(String value) {
setAlt(value);
return this;
}
public Input withUsemap(String value) {
setUsemap(value);
return this;
}
public Input withOnselect(String value) {
setOnselect(value);
return this;
}
public Input withOnchange(String value) {
setOnchange(value);
return this;
}
public Input withAccept(String value) {
setAccept(value);
return this;
}
public Input withAccesskey(String value) {
setAccesskey(value);
return this;
}
public Input withTabindex(Integer value) {
setTabindex(value);
return this;
}
public Input withOnfocus(String value) {
setOnfocus(value);
return this;
}
public Input withOnblur(String value) {
setOnblur(value);
return this;
}
public Input withLangAttribute(String value) {
setLangAttribute(value);
return this;
}
public Input withLang(String value) {
setLang(value);
return this;
}
public Input withDir(String value) {
setDir(value);
return this;
}
public Input withOnclick(String value) {
setOnclick(value);
return this;
}
public Input withOndblclick(String value) {
setOndblclick(value);
return this;
}
public Input withOnmousedown(String value) {
setOnmousedown(value);
return this;
}
public Input withOnmouseup(String value) {
setOnmouseup(value);
return this;
}
public Input withOnmouseover(String value) {
setOnmouseover(value);
return this;
}
public Input withOnmousemove(String value) {
setOnmousemove(value);
return this;
}
public Input withOnmouseout(String value) {
setOnmouseout(value);
return this;
}
public Input withOnkeypress(String value) {
setOnkeypress(value);
return this;
}
public Input withOnkeydown(String value) {
setOnkeydown(value);
return this;
}
public Input withOnkeyup(String value) {
setOnkeyup(value);
return this;
}
public Input withId(String value) {
setId(value);
return this;
}
public Input withClazz(String... values) {
if (values!= null) {
for (String value: values) {
getClazz().add(value);
}
}
return this;
}
public Input withClazz(Collection values) {
if (values!= null) {
getClazz().addAll(values);
}
return this;
}
public Input withStyle(String value) {
setStyle(value);
return this;
}
public Input withTitle(String value) {
setTitle(value);
return this;
}
@Override
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, java.lang.Object object, EqualsStrategy2 strategy) {
if ((object == null)||(this.getClass()!= object.getClass())) {
return false;
}
if (this == object) {
return true;
}
final Input that = ((Input) object);
{
InputType lhsType;
lhsType = this.getType();
InputType rhsType;
rhsType = that.getType();
if (!strategy.equals(LocatorUtils.property(thisLocator, "type", lhsType), LocatorUtils.property(thatLocator, "type", rhsType), lhsType, rhsType, (this.type!= null), (that.type!= null))) {
return false;
}
}
{
String lhsName;
lhsName = this.getName();
String rhsName;
rhsName = that.getName();
if (!strategy.equals(LocatorUtils.property(thisLocator, "name", lhsName), LocatorUtils.property(thatLocator, "name", rhsName), lhsName, rhsName, (this.name!= null), (that.name!= null))) {
return false;
}
}
{
String lhsValue;
lhsValue = this.getValue();
String rhsValue;
rhsValue = that.getValue();
if (!strategy.equals(LocatorUtils.property(thisLocator, "value", lhsValue), LocatorUtils.property(thatLocator, "value", rhsValue), lhsValue, rhsValue, (this.value!= null), (that.value!= null))) {
return false;
}
}
{
String lhsChecked;
lhsChecked = this.getChecked();
String rhsChecked;
rhsChecked = that.getChecked();
if (!strategy.equals(LocatorUtils.property(thisLocator, "checked", lhsChecked), LocatorUtils.property(thatLocator, "checked", rhsChecked), lhsChecked, rhsChecked, (this.checked!= null), (that.checked!= null))) {
return false;
}
}
{
String lhsDisabled;
lhsDisabled = this.getDisabled();
String rhsDisabled;
rhsDisabled = that.getDisabled();
if (!strategy.equals(LocatorUtils.property(thisLocator, "disabled", lhsDisabled), LocatorUtils.property(thatLocator, "disabled", rhsDisabled), lhsDisabled, rhsDisabled, (this.disabled!= null), (that.disabled!= null))) {
return false;
}
}
{
String lhsReadonly;
lhsReadonly = this.getReadonly();
String rhsReadonly;
rhsReadonly = that.getReadonly();
if (!strategy.equals(LocatorUtils.property(thisLocator, "readonly", lhsReadonly), LocatorUtils.property(thatLocator, "readonly", rhsReadonly), lhsReadonly, rhsReadonly, (this.readonly!= null), (that.readonly!= null))) {
return false;
}
}
{
String lhsSize;
lhsSize = this.getSize();
String rhsSize;
rhsSize = that.getSize();
if (!strategy.equals(LocatorUtils.property(thisLocator, "size", lhsSize), LocatorUtils.property(thatLocator, "size", rhsSize), lhsSize, rhsSize, (this.size!= null), (that.size!= null))) {
return false;
}
}
{
BigInteger lhsMaxlength;
lhsMaxlength = this.getMaxlength();
BigInteger rhsMaxlength;
rhsMaxlength = that.getMaxlength();
if (!strategy.equals(LocatorUtils.property(thisLocator, "maxlength", lhsMaxlength), LocatorUtils.property(thatLocator, "maxlength", rhsMaxlength), lhsMaxlength, rhsMaxlength, (this.maxlength!= null), (that.maxlength!= null))) {
return false;
}
}
{
String lhsSrc;
lhsSrc = this.getSrc();
String rhsSrc;
rhsSrc = that.getSrc();
if (!strategy.equals(LocatorUtils.property(thisLocator, "src", lhsSrc), LocatorUtils.property(thatLocator, "src", rhsSrc), lhsSrc, rhsSrc, (this.src!= null), (that.src!= null))) {
return false;
}
}
{
String lhsAlt;
lhsAlt = this.getAlt();
String rhsAlt;
rhsAlt = that.getAlt();
if (!strategy.equals(LocatorUtils.property(thisLocator, "alt", lhsAlt), LocatorUtils.property(thatLocator, "alt", rhsAlt), lhsAlt, rhsAlt, (this.alt!= null), (that.alt!= null))) {
return false;
}
}
{
String lhsUsemap;
lhsUsemap = this.getUsemap();
String rhsUsemap;
rhsUsemap = that.getUsemap();
if (!strategy.equals(LocatorUtils.property(thisLocator, "usemap", lhsUsemap), LocatorUtils.property(thatLocator, "usemap", rhsUsemap), lhsUsemap, rhsUsemap, (this.usemap!= null), (that.usemap!= null))) {
return false;
}
}
{
String lhsOnselect;
lhsOnselect = this.getOnselect();
String rhsOnselect;
rhsOnselect = that.getOnselect();
if (!strategy.equals(LocatorUtils.property(thisLocator, "onselect", lhsOnselect), LocatorUtils.property(thatLocator, "onselect", rhsOnselect), lhsOnselect, rhsOnselect, (this.onselect!= null), (that.onselect!= null))) {
return false;
}
}
{
String lhsOnchange;
lhsOnchange = this.getOnchange();
String rhsOnchange;
rhsOnchange = that.getOnchange();
if (!strategy.equals(LocatorUtils.property(thisLocator, "onchange", lhsOnchange), LocatorUtils.property(thatLocator, "onchange", rhsOnchange), lhsOnchange, rhsOnchange, (this.onchange!= null), (that.onchange!= null))) {
return false;
}
}
{
String lhsAccept;
lhsAccept = this.getAccept();
String rhsAccept;
rhsAccept = that.getAccept();
if (!strategy.equals(LocatorUtils.property(thisLocator, "accept", lhsAccept), LocatorUtils.property(thatLocator, "accept", rhsAccept), lhsAccept, rhsAccept, (this.accept!= null), (that.accept!= null))) {
return false;
}
}
{
String lhsAccesskey;
lhsAccesskey = this.getAccesskey();
String rhsAccesskey;
rhsAccesskey = that.getAccesskey();
if (!strategy.equals(LocatorUtils.property(thisLocator, "accesskey", lhsAccesskey), LocatorUtils.property(thatLocator, "accesskey", rhsAccesskey), lhsAccesskey, rhsAccesskey, (this.accesskey!= null), (that.accesskey!= null))) {
return false;
}
}
{
Integer lhsTabindex;
lhsTabindex = this.getTabindex();
Integer rhsTabindex;
rhsTabindex = that.getTabindex();
if (!strategy.equals(LocatorUtils.property(thisLocator, "tabindex", lhsTabindex), LocatorUtils.property(thatLocator, "tabindex", rhsTabindex), lhsTabindex, rhsTabindex, (this.tabindex!= null), (that.tabindex!= null))) {
return false;
}
}
{
String lhsOnfocus;
lhsOnfocus = this.getOnfocus();
String rhsOnfocus;
rhsOnfocus = that.getOnfocus();
if (!strategy.equals(LocatorUtils.property(thisLocator, "onfocus", lhsOnfocus), LocatorUtils.property(thatLocator, "onfocus", rhsOnfocus), lhsOnfocus, rhsOnfocus, (this.onfocus!= null), (that.onfocus!= null))) {
return false;
}
}
{
String lhsOnblur;
lhsOnblur = this.getOnblur();
String rhsOnblur;
rhsOnblur = that.getOnblur();
if (!strategy.equals(LocatorUtils.property(thisLocator, "onblur", lhsOnblur), LocatorUtils.property(thatLocator, "onblur", rhsOnblur), lhsOnblur, rhsOnblur, (this.onblur!= null), (that.onblur!= null))) {
return false;
}
}
{
String lhsLangAttribute;
lhsLangAttribute = this.getLangAttribute();
String rhsLangAttribute;
rhsLangAttribute = that.getLangAttribute();
if (!strategy.equals(LocatorUtils.property(thisLocator, "langAttribute", lhsLangAttribute), LocatorUtils.property(thatLocator, "langAttribute", rhsLangAttribute), lhsLangAttribute, rhsLangAttribute, (this.langAttribute!= null), (that.langAttribute!= null))) {
return false;
}
}
{
String lhsLang;
lhsLang = this.getLang();
String rhsLang;
rhsLang = that.getLang();
if (!strategy.equals(LocatorUtils.property(thisLocator, "lang", lhsLang), LocatorUtils.property(thatLocator, "lang", rhsLang), lhsLang, rhsLang, (this.lang!= null), (that.lang!= null))) {
return false;
}
}
{
String lhsDir;
lhsDir = this.getDir();
String rhsDir;
rhsDir = that.getDir();
if (!strategy.equals(LocatorUtils.property(thisLocator, "dir", lhsDir), LocatorUtils.property(thatLocator, "dir", rhsDir), lhsDir, rhsDir, (this.dir!= null), (that.dir!= null))) {
return false;
}
}
{
String lhsOnclick;
lhsOnclick = this.getOnclick();
String rhsOnclick;
rhsOnclick = that.getOnclick();
if (!strategy.equals(LocatorUtils.property(thisLocator, "onclick", lhsOnclick), LocatorUtils.property(thatLocator, "onclick", rhsOnclick), lhsOnclick, rhsOnclick, (this.onclick!= null), (that.onclick!= null))) {
return false;
}
}
{
String lhsOndblclick;
lhsOndblclick = this.getOndblclick();
String rhsOndblclick;
rhsOndblclick = that.getOndblclick();
if (!strategy.equals(LocatorUtils.property(thisLocator, "ondblclick", lhsOndblclick), LocatorUtils.property(thatLocator, "ondblclick", rhsOndblclick), lhsOndblclick, rhsOndblclick, (this.ondblclick!= null), (that.ondblclick!= null))) {
return false;
}
}
{
String lhsOnmousedown;
lhsOnmousedown = this.getOnmousedown();
String rhsOnmousedown;
rhsOnmousedown = that.getOnmousedown();
if (!strategy.equals(LocatorUtils.property(thisLocator, "onmousedown", lhsOnmousedown), LocatorUtils.property(thatLocator, "onmousedown", rhsOnmousedown), lhsOnmousedown, rhsOnmousedown, (this.onmousedown!= null), (that.onmousedown!= null))) {
return false;
}
}
{
String lhsOnmouseup;
lhsOnmouseup = this.getOnmouseup();
String rhsOnmouseup;
rhsOnmouseup = that.getOnmouseup();
if (!strategy.equals(LocatorUtils.property(thisLocator, "onmouseup", lhsOnmouseup), LocatorUtils.property(thatLocator, "onmouseup", rhsOnmouseup), lhsOnmouseup, rhsOnmouseup, (this.onmouseup!= null), (that.onmouseup!= null))) {
return false;
}
}
{
String lhsOnmouseover;
lhsOnmouseover = this.getOnmouseover();
String rhsOnmouseover;
rhsOnmouseover = that.getOnmouseover();
if (!strategy.equals(LocatorUtils.property(thisLocator, "onmouseover", lhsOnmouseover), LocatorUtils.property(thatLocator, "onmouseover", rhsOnmouseover), lhsOnmouseover, rhsOnmouseover, (this.onmouseover!= null), (that.onmouseover!= null))) {
return false;
}
}
{
String lhsOnmousemove;
lhsOnmousemove = this.getOnmousemove();
String rhsOnmousemove;
rhsOnmousemove = that.getOnmousemove();
if (!strategy.equals(LocatorUtils.property(thisLocator, "onmousemove", lhsOnmousemove), LocatorUtils.property(thatLocator, "onmousemove", rhsOnmousemove), lhsOnmousemove, rhsOnmousemove, (this.onmousemove!= null), (that.onmousemove!= null))) {
return false;
}
}
{
String lhsOnmouseout;
lhsOnmouseout = this.getOnmouseout();
String rhsOnmouseout;
rhsOnmouseout = that.getOnmouseout();
if (!strategy.equals(LocatorUtils.property(thisLocator, "onmouseout", lhsOnmouseout), LocatorUtils.property(thatLocator, "onmouseout", rhsOnmouseout), lhsOnmouseout, rhsOnmouseout, (this.onmouseout!= null), (that.onmouseout!= null))) {
return false;
}
}
{
String lhsOnkeypress;
lhsOnkeypress = this.getOnkeypress();
String rhsOnkeypress;
rhsOnkeypress = that.getOnkeypress();
if (!strategy.equals(LocatorUtils.property(thisLocator, "onkeypress", lhsOnkeypress), LocatorUtils.property(thatLocator, "onkeypress", rhsOnkeypress), lhsOnkeypress, rhsOnkeypress, (this.onkeypress!= null), (that.onkeypress!= null))) {
return false;
}
}
{
String lhsOnkeydown;
lhsOnkeydown = this.getOnkeydown();
String rhsOnkeydown;
rhsOnkeydown = that.getOnkeydown();
if (!strategy.equals(LocatorUtils.property(thisLocator, "onkeydown", lhsOnkeydown), LocatorUtils.property(thatLocator, "onkeydown", rhsOnkeydown), lhsOnkeydown, rhsOnkeydown, (this.onkeydown!= null), (that.onkeydown!= null))) {
return false;
}
}
{
String lhsOnkeyup;
lhsOnkeyup = this.getOnkeyup();
String rhsOnkeyup;
rhsOnkeyup = that.getOnkeyup();
if (!strategy.equals(LocatorUtils.property(thisLocator, "onkeyup", lhsOnkeyup), LocatorUtils.property(thatLocator, "onkeyup", rhsOnkeyup), lhsOnkeyup, rhsOnkeyup, (this.onkeyup!= null), (that.onkeyup!= null))) {
return false;
}
}
{
String lhsId;
lhsId = this.getId();
String rhsId;
rhsId = that.getId();
if (!strategy.equals(LocatorUtils.property(thisLocator, "id", lhsId), LocatorUtils.property(thatLocator, "id", rhsId), lhsId, rhsId, (this.id!= null), (that.id!= null))) {
return false;
}
}
{
List lhsClazz;
lhsClazz = (((this.clazz!= null)&&(!this.clazz.isEmpty()))?this.getClazz():null);
List rhsClazz;
rhsClazz = (((that.clazz!= null)&&(!that.clazz.isEmpty()))?that.getClazz():null);
if (!strategy.equals(LocatorUtils.property(thisLocator, "clazz", lhsClazz), LocatorUtils.property(thatLocator, "clazz", rhsClazz), lhsClazz, rhsClazz, ((this.clazz!= null)&&(!this.clazz.isEmpty())), ((that.clazz!= null)&&(!that.clazz.isEmpty())))) {
return false;
}
}
{
String lhsStyle;
lhsStyle = this.getStyle();
String rhsStyle;
rhsStyle = that.getStyle();
if (!strategy.equals(LocatorUtils.property(thisLocator, "style", lhsStyle), LocatorUtils.property(thatLocator, "style", rhsStyle), lhsStyle, rhsStyle, (this.style!= null), (that.style!= null))) {
return false;
}
}
{
String lhsTitle;
lhsTitle = this.getTitle();
String rhsTitle;
rhsTitle = that.getTitle();
if (!strategy.equals(LocatorUtils.property(thisLocator, "title", lhsTitle), LocatorUtils.property(thatLocator, "title", rhsTitle), lhsTitle, rhsTitle, (this.title!= null), (that.title!= null))) {
return false;
}
}
return true;
}
@Override
public boolean equals(java.lang.Object object) {
final EqualsStrategy2 strategy = JAXBEqualsStrategy.getInstance();
return equals(null, null, object, strategy);
}
@Override
public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) {
int currentHashCode = 1;
{
InputType theType;
theType = this.getType();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "type", theType), currentHashCode, theType, (this.type!= null));
}
{
String theName;
theName = this.getName();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "name", theName), currentHashCode, theName, (this.name!= null));
}
{
String theValue;
theValue = this.getValue();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "value", theValue), currentHashCode, theValue, (this.value!= null));
}
{
String theChecked;
theChecked = this.getChecked();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "checked", theChecked), currentHashCode, theChecked, (this.checked!= null));
}
{
String theDisabled;
theDisabled = this.getDisabled();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "disabled", theDisabled), currentHashCode, theDisabled, (this.disabled!= null));
}
{
String theReadonly;
theReadonly = this.getReadonly();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "readonly", theReadonly), currentHashCode, theReadonly, (this.readonly!= null));
}
{
String theSize;
theSize = this.getSize();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "size", theSize), currentHashCode, theSize, (this.size!= null));
}
{
BigInteger theMaxlength;
theMaxlength = this.getMaxlength();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "maxlength", theMaxlength), currentHashCode, theMaxlength, (this.maxlength!= null));
}
{
String theSrc;
theSrc = this.getSrc();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "src", theSrc), currentHashCode, theSrc, (this.src!= null));
}
{
String theAlt;
theAlt = this.getAlt();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "alt", theAlt), currentHashCode, theAlt, (this.alt!= null));
}
{
String theUsemap;
theUsemap = this.getUsemap();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "usemap", theUsemap), currentHashCode, theUsemap, (this.usemap!= null));
}
{
String theOnselect;
theOnselect = this.getOnselect();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "onselect", theOnselect), currentHashCode, theOnselect, (this.onselect!= null));
}
{
String theOnchange;
theOnchange = this.getOnchange();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "onchange", theOnchange), currentHashCode, theOnchange, (this.onchange!= null));
}
{
String theAccept;
theAccept = this.getAccept();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "accept", theAccept), currentHashCode, theAccept, (this.accept!= null));
}
{
String theAccesskey;
theAccesskey = this.getAccesskey();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "accesskey", theAccesskey), currentHashCode, theAccesskey, (this.accesskey!= null));
}
{
Integer theTabindex;
theTabindex = this.getTabindex();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "tabindex", theTabindex), currentHashCode, theTabindex, (this.tabindex!= null));
}
{
String theOnfocus;
theOnfocus = this.getOnfocus();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "onfocus", theOnfocus), currentHashCode, theOnfocus, (this.onfocus!= null));
}
{
String theOnblur;
theOnblur = this.getOnblur();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "onblur", theOnblur), currentHashCode, theOnblur, (this.onblur!= null));
}
{
String theLangAttribute;
theLangAttribute = this.getLangAttribute();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "langAttribute", theLangAttribute), currentHashCode, theLangAttribute, (this.langAttribute!= null));
}
{
String theLang;
theLang = this.getLang();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "lang", theLang), currentHashCode, theLang, (this.lang!= null));
}
{
String theDir;
theDir = this.getDir();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "dir", theDir), currentHashCode, theDir, (this.dir!= null));
}
{
String theOnclick;
theOnclick = this.getOnclick();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "onclick", theOnclick), currentHashCode, theOnclick, (this.onclick!= null));
}
{
String theOndblclick;
theOndblclick = this.getOndblclick();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "ondblclick", theOndblclick), currentHashCode, theOndblclick, (this.ondblclick!= null));
}
{
String theOnmousedown;
theOnmousedown = this.getOnmousedown();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "onmousedown", theOnmousedown), currentHashCode, theOnmousedown, (this.onmousedown!= null));
}
{
String theOnmouseup;
theOnmouseup = this.getOnmouseup();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "onmouseup", theOnmouseup), currentHashCode, theOnmouseup, (this.onmouseup!= null));
}
{
String theOnmouseover;
theOnmouseover = this.getOnmouseover();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "onmouseover", theOnmouseover), currentHashCode, theOnmouseover, (this.onmouseover!= null));
}
{
String theOnmousemove;
theOnmousemove = this.getOnmousemove();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "onmousemove", theOnmousemove), currentHashCode, theOnmousemove, (this.onmousemove!= null));
}
{
String theOnmouseout;
theOnmouseout = this.getOnmouseout();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "onmouseout", theOnmouseout), currentHashCode, theOnmouseout, (this.onmouseout!= null));
}
{
String theOnkeypress;
theOnkeypress = this.getOnkeypress();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "onkeypress", theOnkeypress), currentHashCode, theOnkeypress, (this.onkeypress!= null));
}
{
String theOnkeydown;
theOnkeydown = this.getOnkeydown();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "onkeydown", theOnkeydown), currentHashCode, theOnkeydown, (this.onkeydown!= null));
}
{
String theOnkeyup;
theOnkeyup = this.getOnkeyup();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "onkeyup", theOnkeyup), currentHashCode, theOnkeyup, (this.onkeyup!= null));
}
{
String theId;
theId = this.getId();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "id", theId), currentHashCode, theId, (this.id!= null));
}
{
List theClazz;
theClazz = (((this.clazz!= null)&&(!this.clazz.isEmpty()))?this.getClazz():null);
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "clazz", theClazz), currentHashCode, theClazz, ((this.clazz!= null)&&(!this.clazz.isEmpty())));
}
{
String theStyle;
theStyle = this.getStyle();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "style", theStyle), currentHashCode, theStyle, (this.style!= null));
}
{
String theTitle;
theTitle = this.getTitle();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "title", theTitle), currentHashCode, theTitle, (this.title!= null));
}
return currentHashCode;
}
@Override
public int hashCode() {
final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.getInstance();
return this.hashCode(null, strategy);
}
@Override
public String toString() {
final ToStringStrategy2 strategy = JAXBToStringStrategy.getInstance();
final StringBuilder buffer = new StringBuilder();
append(null, buffer, strategy);
return buffer.toString();
}
@Override
public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
strategy.appendStart(locator, this, buffer);
appendFields(locator, buffer, strategy);
strategy.appendEnd(locator, this, buffer);
return buffer;
}
@Override
public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) {
{
InputType theType;
theType = this.getType();
strategy.appendField(locator, this, "type", buffer, theType, (this.type!= null));
}
{
String theName;
theName = this.getName();
strategy.appendField(locator, this, "name", buffer, theName, (this.name!= null));
}
{
String theValue;
theValue = this.getValue();
strategy.appendField(locator, this, "value", buffer, theValue, (this.value!= null));
}
{
String theChecked;
theChecked = this.getChecked();
strategy.appendField(locator, this, "checked", buffer, theChecked, (this.checked!= null));
}
{
String theDisabled;
theDisabled = this.getDisabled();
strategy.appendField(locator, this, "disabled", buffer, theDisabled, (this.disabled!= null));
}
{
String theReadonly;
theReadonly = this.getReadonly();
strategy.appendField(locator, this, "readonly", buffer, theReadonly, (this.readonly!= null));
}
{
String theSize;
theSize = this.getSize();
strategy.appendField(locator, this, "size", buffer, theSize, (this.size!= null));
}
{
BigInteger theMaxlength;
theMaxlength = this.getMaxlength();
strategy.appendField(locator, this, "maxlength", buffer, theMaxlength, (this.maxlength!= null));
}
{
String theSrc;
theSrc = this.getSrc();
strategy.appendField(locator, this, "src", buffer, theSrc, (this.src!= null));
}
{
String theAlt;
theAlt = this.getAlt();
strategy.appendField(locator, this, "alt", buffer, theAlt, (this.alt!= null));
}
{
String theUsemap;
theUsemap = this.getUsemap();
strategy.appendField(locator, this, "usemap", buffer, theUsemap, (this.usemap!= null));
}
{
String theOnselect;
theOnselect = this.getOnselect();
strategy.appendField(locator, this, "onselect", buffer, theOnselect, (this.onselect!= null));
}
{
String theOnchange;
theOnchange = this.getOnchange();
strategy.appendField(locator, this, "onchange", buffer, theOnchange, (this.onchange!= null));
}
{
String theAccept;
theAccept = this.getAccept();
strategy.appendField(locator, this, "accept", buffer, theAccept, (this.accept!= null));
}
{
String theAccesskey;
theAccesskey = this.getAccesskey();
strategy.appendField(locator, this, "accesskey", buffer, theAccesskey, (this.accesskey!= null));
}
{
Integer theTabindex;
theTabindex = this.getTabindex();
strategy.appendField(locator, this, "tabindex", buffer, theTabindex, (this.tabindex!= null));
}
{
String theOnfocus;
theOnfocus = this.getOnfocus();
strategy.appendField(locator, this, "onfocus", buffer, theOnfocus, (this.onfocus!= null));
}
{
String theOnblur;
theOnblur = this.getOnblur();
strategy.appendField(locator, this, "onblur", buffer, theOnblur, (this.onblur!= null));
}
{
String theLangAttribute;
theLangAttribute = this.getLangAttribute();
strategy.appendField(locator, this, "langAttribute", buffer, theLangAttribute, (this.langAttribute!= null));
}
{
String theLang;
theLang = this.getLang();
strategy.appendField(locator, this, "lang", buffer, theLang, (this.lang!= null));
}
{
String theDir;
theDir = this.getDir();
strategy.appendField(locator, this, "dir", buffer, theDir, (this.dir!= null));
}
{
String theOnclick;
theOnclick = this.getOnclick();
strategy.appendField(locator, this, "onclick", buffer, theOnclick, (this.onclick!= null));
}
{
String theOndblclick;
theOndblclick = this.getOndblclick();
strategy.appendField(locator, this, "ondblclick", buffer, theOndblclick, (this.ondblclick!= null));
}
{
String theOnmousedown;
theOnmousedown = this.getOnmousedown();
strategy.appendField(locator, this, "onmousedown", buffer, theOnmousedown, (this.onmousedown!= null));
}
{
String theOnmouseup;
theOnmouseup = this.getOnmouseup();
strategy.appendField(locator, this, "onmouseup", buffer, theOnmouseup, (this.onmouseup!= null));
}
{
String theOnmouseover;
theOnmouseover = this.getOnmouseover();
strategy.appendField(locator, this, "onmouseover", buffer, theOnmouseover, (this.onmouseover!= null));
}
{
String theOnmousemove;
theOnmousemove = this.getOnmousemove();
strategy.appendField(locator, this, "onmousemove", buffer, theOnmousemove, (this.onmousemove!= null));
}
{
String theOnmouseout;
theOnmouseout = this.getOnmouseout();
strategy.appendField(locator, this, "onmouseout", buffer, theOnmouseout, (this.onmouseout!= null));
}
{
String theOnkeypress;
theOnkeypress = this.getOnkeypress();
strategy.appendField(locator, this, "onkeypress", buffer, theOnkeypress, (this.onkeypress!= null));
}
{
String theOnkeydown;
theOnkeydown = this.getOnkeydown();
strategy.appendField(locator, this, "onkeydown", buffer, theOnkeydown, (this.onkeydown!= null));
}
{
String theOnkeyup;
theOnkeyup = this.getOnkeyup();
strategy.appendField(locator, this, "onkeyup", buffer, theOnkeyup, (this.onkeyup!= null));
}
{
String theId;
theId = this.getId();
strategy.appendField(locator, this, "id", buffer, theId, (this.id!= null));
}
{
List theClazz;
theClazz = (((this.clazz!= null)&&(!this.clazz.isEmpty()))?this.getClazz():null);
strategy.appendField(locator, this, "clazz", buffer, theClazz, ((this.clazz!= null)&&(!this.clazz.isEmpty())));
}
{
String theStyle;
theStyle = this.getStyle();
strategy.appendField(locator, this, "style", buffer, theStyle, (this.style!= null));
}
{
String theTitle;
theTitle = this.getTitle();
strategy.appendField(locator, this, "title", buffer, theTitle, (this.title!= null));
}
return buffer;
}
}