All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.docbook.model.TableFooter Maven / Gradle / Ivy

The newest version!

package org.docbook.model;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.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 org.w3.xlink.Actuate;
import org.w3.xlink.Show;


/**
 * 

Java class for tfoot element declaration. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <element name="tfoot">
 *   <complexType>
 *     <complexContent>
 *       <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *         <sequence>
 *           <element ref="{http://docbook.org/ns/docbook}colspec" maxOccurs="unbounded" minOccurs="0"/>
 *           <choice>
 *             <element ref="{http://docbook.org/ns/docbook}row" maxOccurs="unbounded"/>
 *             <element ref="{http://docbook.org/ns/docbook}tr" maxOccurs="unbounded"/>
 *           </choice>
 *         </sequence>
 *         <attGroup ref="{http://docbook.org/ns/docbook}db.common.linking.attributes"/>
 *         <attGroup ref="{http://docbook.org/ns/docbook}db.common.attributes"/>
 *         <attribute name="role" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="valign" type="{http://docbook.org/ns/docbook}valign" />
 *         <attribute name="class" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="style" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="title" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="lang" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="onclick" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="ondblclick" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="onmousedown" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="onmouseup" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="onmouseover" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="onmousemove" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="onmouseout" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="onkeypress" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="onkeydown" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="onkeyup" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="align" type="{http://docbook.org/ns/docbook}align" />
 *         <attribute name="char" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *         <attribute name="charoff" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *       </restriction>
 *     </complexContent>
 *   </complexType>
 * </element>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "colSpec", "row", "tr" }) @XmlRootElement(name = "tfoot") public class TableFooter { @XmlElement(name = "colspec") protected List colSpec; protected List row; protected List tr; @XmlAttribute(name = "role") @XmlSchemaType(name = "anySimpleType") protected String role; @XmlAttribute(name = "valign") protected VerticalAlign vAlign; @XmlAttribute(name = "class") @XmlSchemaType(name = "anySimpleType") protected String clazz; @XmlAttribute(name = "style") @XmlSchemaType(name = "anySimpleType") protected String style; @XmlAttribute(name = "title") @XmlSchemaType(name = "anySimpleType") protected String title; @XmlAttribute(name = "lang") @XmlSchemaType(name = "anySimpleType") protected String lang; @XmlAttribute(name = "onclick") @XmlSchemaType(name = "anySimpleType") protected String onclick; @XmlAttribute(name = "ondblclick") @XmlSchemaType(name = "anySimpleType") protected String ondblclick; @XmlAttribute(name = "onmousedown") @XmlSchemaType(name = "anySimpleType") protected String onmousedown; @XmlAttribute(name = "onmouseup") @XmlSchemaType(name = "anySimpleType") protected String onmouseup; @XmlAttribute(name = "onmouseover") @XmlSchemaType(name = "anySimpleType") protected String onmouseover; @XmlAttribute(name = "onmousemove") @XmlSchemaType(name = "anySimpleType") protected String onmousemove; @XmlAttribute(name = "onmouseout") @XmlSchemaType(name = "anySimpleType") protected String onmouseout; @XmlAttribute(name = "onkeypress") @XmlSchemaType(name = "anySimpleType") protected String onkeypress; @XmlAttribute(name = "onkeydown") @XmlSchemaType(name = "anySimpleType") protected String onkeydown; @XmlAttribute(name = "onkeyup") @XmlSchemaType(name = "anySimpleType") protected String onkeyup; @XmlAttribute(name = "align") protected Align align; @XmlAttribute(name = "char") @XmlSchemaType(name = "anySimpleType") protected String _char; @XmlAttribute(name = "charoff") @XmlSchemaType(name = "anySimpleType") protected String charoff; @XmlAttribute(name = "linkend") @XmlIDREF @XmlSchemaType(name = "IDREF") protected Object linkend; @XmlAttribute(name = "href", namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anySimpleType") protected String href; @XmlAttribute(name = "type", namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anySimpleType") protected String xlinkType; @XmlAttribute(name = "role", namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anySimpleType") protected String xlinkRole; @XmlAttribute(name = "arcrole", namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anySimpleType") protected String arcrole; @XmlAttribute(name = "title", namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anySimpleType") protected String xlinkTitle; @XmlAttribute(name = "show", namespace = "http://www.w3.org/1999/xlink") protected Show show; @XmlAttribute(name = "actuate", namespace = "http://www.w3.org/1999/xlink") protected Actuate actuate; @XmlAttribute(name = "id", namespace = "http://www.w3.org/XML/1998/namespace") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; @XmlAttribute(name = "version") @XmlSchemaType(name = "anySimpleType") protected String version; @XmlAttribute(name = "lang", namespace = "http://www.w3.org/XML/1998/namespace") @XmlSchemaType(name = "anySimpleType") protected String xmlLang; @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace") @XmlSchemaType(name = "anySimpleType") protected String base; @XmlAttribute(name = "remap") @XmlSchemaType(name = "anySimpleType") protected String remap; @XmlAttribute(name = "xreflabel") @XmlSchemaType(name = "anySimpleType") protected String xreflabel; @XmlAttribute(name = "revisionflag") protected RevisionFlag revisionflag; @XmlAttribute(name = "dir") protected Direction dir; @XmlAttribute(name = "arch") @XmlSchemaType(name = "anySimpleType") protected String arch; @XmlAttribute(name = "audience") @XmlSchemaType(name = "anySimpleType") protected String audience; @XmlAttribute(name = "condition") @XmlSchemaType(name = "anySimpleType") protected String condition; @XmlAttribute(name = "conformance") @XmlSchemaType(name = "anySimpleType") protected String conformance; @XmlAttribute(name = "os") @XmlSchemaType(name = "anySimpleType") protected String os; @XmlAttribute(name = "revision") @XmlSchemaType(name = "anySimpleType") protected String revisionAttribute; @XmlAttribute(name = "security") @XmlSchemaType(name = "anySimpleType") protected String security; @XmlAttribute(name = "userlevel") @XmlSchemaType(name = "anySimpleType") protected String userlevel; @XmlAttribute(name = "vendor") @XmlSchemaType(name = "anySimpleType") protected String vendor; @XmlAttribute(name = "wordsize") @XmlSchemaType(name = "anySimpleType") protected String wordsize; @XmlAttribute(name = "annotations") @XmlSchemaType(name = "anySimpleType") protected String annotations; /** * Gets the value of the colSpec 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 colSpec property. * *

* For example, to add a new item, do as follows: *

     *    getColSpec().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ColumnSpec } * * */ public List getColSpec() { if (colSpec == null) { colSpec = new ArrayList(); } return this.colSpec; } /** * Gets the value of the row 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 row property. * *

* For example, to add a new item, do as follows: *

     *    getRow().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Row } * * */ public List getRow() { if (row == null) { row = new ArrayList(); } return this.row; } /** * Gets the value of the tr 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 tr property. * *

* For example, to add a new item, do as follows: *

     *    getTr().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Tr } * * */ public List getTr() { if (tr == null) { tr = new ArrayList(); } return this.tr; } /** * 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; } /** * Gets the value of the vAlign property. * * @return * possible object is * {@link VerticalAlign } * */ public VerticalAlign getVAlign() { return vAlign; } /** * Sets the value of the vAlign property. * * @param value * allowed object is * {@link VerticalAlign } * */ public void setVAlign(VerticalAlign value) { this.vAlign = value; } /** * Gets the value of the clazz property. * * @return * possible object is * {@link String } * */ public String getClazz() { return clazz; } /** * Sets the value of the clazz property. * * @param value * allowed object is * {@link String } * */ public void setClazz(String value) { this.clazz = value; } /** * 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; } /** * 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 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 align property. * * @return * possible object is * {@link Align } * */ public Align getAlign() { return align; } /** * Sets the value of the align property. * * @param value * allowed object is * {@link Align } * */ public void setAlign(Align value) { this.align = value; } /** * Gets the value of the char property. * * @return * possible object is * {@link String } * */ public String getChar() { return _char; } /** * Sets the value of the char property. * * @param value * allowed object is * {@link String } * */ public void setChar(String value) { this._char = value; } /** * Gets the value of the charoff property. * * @return * possible object is * {@link String } * */ public String getCharoff() { return charoff; } /** * Sets the value of the charoff property. * * @param value * allowed object is * {@link String } * */ public void setCharoff(String value) { this.charoff = value; } /** * Gets the value of the linkend property. * * @return * possible object is * {@link Object } * */ public Object getLinkend() { return linkend; } /** * Sets the value of the linkend property. * * @param value * allowed object is * {@link Object } * */ public void setLinkend(Object value) { this.linkend = value; } /** * Gets the value of the href property. * * @return * possible object is * {@link String } * */ public String getHref() { return href; } /** * Sets the value of the href property. * * @param value * allowed object is * {@link String } * */ public void setHref(String value) { this.href = value; } /** * Gets the value of the xlinkType property. * * @return * possible object is * {@link String } * */ public String getXlinkType() { return xlinkType; } /** * Sets the value of the xlinkType property. * * @param value * allowed object is * {@link String } * */ public void setXlinkType(String value) { this.xlinkType = value; } /** * Gets the value of the xlinkRole property. * * @return * possible object is * {@link String } * */ public String getXlinkRole() { return xlinkRole; } /** * Sets the value of the xlinkRole property. * * @param value * allowed object is * {@link String } * */ public void setXlinkRole(String value) { this.xlinkRole = value; } /** * Gets the value of the arcrole property. * * @return * possible object is * {@link String } * */ public String getArcrole() { return arcrole; } /** * Sets the value of the arcrole property. * * @param value * allowed object is * {@link String } * */ public void setArcrole(String value) { this.arcrole = value; } /** * Gets the value of the xlinkTitle property. * * @return * possible object is * {@link String } * */ public String getXlinkTitle() { return xlinkTitle; } /** * Sets the value of the xlinkTitle property. * * @param value * allowed object is * {@link String } * */ public void setXlinkTitle(String value) { this.xlinkTitle = value; } /** * Gets the value of the show property. * * @return * possible object is * {@link Show } * */ public Show getShow() { return show; } /** * Sets the value of the show property. * * @param value * allowed object is * {@link Show } * */ public void setShow(Show value) { this.show = value; } /** * Gets the value of the actuate property. * * @return * possible object is * {@link Actuate } * */ public Actuate getActuate() { return actuate; } /** * Sets the value of the actuate property. * * @param value * allowed object is * {@link Actuate } * */ public void setActuate(Actuate value) { this.actuate = 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 version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the xmlLang property. * * @return * possible object is * {@link String } * */ public String getXmlLang() { return xmlLang; } /** * Sets the value of the xmlLang property. * * @param value * allowed object is * {@link String } * */ public void setXmlLang(String value) { this.xmlLang = value; } /** * Gets the value of the base property. * * @return * possible object is * {@link String } * */ public String getBase() { return base; } /** * Sets the value of the base property. * * @param value * allowed object is * {@link String } * */ public void setBase(String value) { this.base = value; } /** * Gets the value of the remap property. * * @return * possible object is * {@link String } * */ public String getRemap() { return remap; } /** * Sets the value of the remap property. * * @param value * allowed object is * {@link String } * */ public void setRemap(String value) { this.remap = value; } /** * Gets the value of the xreflabel property. * * @return * possible object is * {@link String } * */ public String getXreflabel() { return xreflabel; } /** * Sets the value of the xreflabel property. * * @param value * allowed object is * {@link String } * */ public void setXreflabel(String value) { this.xreflabel = value; } /** * Gets the value of the revisionflag property. * * @return * possible object is * {@link RevisionFlag } * */ public RevisionFlag getRevisionflag() { return revisionflag; } /** * Sets the value of the revisionflag property. * * @param value * allowed object is * {@link RevisionFlag } * */ public void setRevisionflag(RevisionFlag value) { this.revisionflag = value; } /** * Gets the value of the dir property. * * @return * possible object is * {@link Direction } * */ public Direction getDir() { return dir; } /** * Sets the value of the dir property. * * @param value * allowed object is * {@link Direction } * */ public void setDir(Direction value) { this.dir = value; } /** * Gets the value of the arch property. * * @return * possible object is * {@link String } * */ public String getArch() { return arch; } /** * Sets the value of the arch property. * * @param value * allowed object is * {@link String } * */ public void setArch(String value) { this.arch = value; } /** * Gets the value of the audience property. * * @return * possible object is * {@link String } * */ public String getAudience() { return audience; } /** * Sets the value of the audience property. * * @param value * allowed object is * {@link String } * */ public void setAudience(String value) { this.audience = value; } /** * Gets the value of the condition property. * * @return * possible object is * {@link String } * */ public String getCondition() { return condition; } /** * Sets the value of the condition property. * * @param value * allowed object is * {@link String } * */ public void setCondition(String value) { this.condition = value; } /** * Gets the value of the conformance property. * * @return * possible object is * {@link String } * */ public String getConformance() { return conformance; } /** * Sets the value of the conformance property. * * @param value * allowed object is * {@link String } * */ public void setConformance(String value) { this.conformance = value; } /** * Gets the value of the os property. * * @return * possible object is * {@link String } * */ public String getOs() { return os; } /** * Sets the value of the os property. * * @param value * allowed object is * {@link String } * */ public void setOs(String value) { this.os = value; } /** * Gets the value of the revisionAttribute property. * * @return * possible object is * {@link String } * */ public String getRevisionAttribute() { return revisionAttribute; } /** * Sets the value of the revisionAttribute property. * * @param value * allowed object is * {@link String } * */ public void setRevisionAttribute(String value) { this.revisionAttribute = value; } /** * Gets the value of the security property. * * @return * possible object is * {@link String } * */ public String getSecurity() { return security; } /** * Sets the value of the security property. * * @param value * allowed object is * {@link String } * */ public void setSecurity(String value) { this.security = value; } /** * Gets the value of the userlevel property. * * @return * possible object is * {@link String } * */ public String getUserlevel() { return userlevel; } /** * Sets the value of the userlevel property. * * @param value * allowed object is * {@link String } * */ public void setUserlevel(String value) { this.userlevel = value; } /** * Gets the value of the vendor property. * * @return * possible object is * {@link String } * */ public String getVendor() { return vendor; } /** * Sets the value of the vendor property. * * @param value * allowed object is * {@link String } * */ public void setVendor(String value) { this.vendor = value; } /** * Gets the value of the wordsize property. * * @return * possible object is * {@link String } * */ public String getWordsize() { return wordsize; } /** * Sets the value of the wordsize property. * * @param value * allowed object is * {@link String } * */ public void setWordsize(String value) { this.wordsize = value; } /** * Gets the value of the annotations property. * * @return * possible object is * {@link String } * */ public String getAnnotations() { return annotations; } /** * Sets the value of the annotations property. * * @param value * allowed object is * {@link String } * */ public void setAnnotations(String value) { this.annotations = value; } public TableFooter withColSpec(ColumnSpec... values) { if (values!= null) { for (ColumnSpec value: values) { getColSpec().add(value); } } return this; } public TableFooter withColSpec(Collection values) { if (values!= null) { getColSpec().addAll(values); } return this; } public TableFooter withRow(Row... values) { if (values!= null) { for (Row value: values) { getRow().add(value); } } return this; } public TableFooter withRow(Collection values) { if (values!= null) { getRow().addAll(values); } return this; } public TableFooter withTr(Tr... values) { if (values!= null) { for (Tr value: values) { getTr().add(value); } } return this; } public TableFooter withTr(Collection values) { if (values!= null) { getTr().addAll(values); } return this; } public TableFooter withRole(String value) { setRole(value); return this; } public TableFooter withVAlign(VerticalAlign value) { setVAlign(value); return this; } public TableFooter withClazz(String value) { setClazz(value); return this; } public TableFooter withStyle(String value) { setStyle(value); return this; } public TableFooter withTitle(String value) { setTitle(value); return this; } public TableFooter withLang(String value) { setLang(value); return this; } public TableFooter withOnclick(String value) { setOnclick(value); return this; } public TableFooter withOndblclick(String value) { setOndblclick(value); return this; } public TableFooter withOnmousedown(String value) { setOnmousedown(value); return this; } public TableFooter withOnmouseup(String value) { setOnmouseup(value); return this; } public TableFooter withOnmouseover(String value) { setOnmouseover(value); return this; } public TableFooter withOnmousemove(String value) { setOnmousemove(value); return this; } public TableFooter withOnmouseout(String value) { setOnmouseout(value); return this; } public TableFooter withOnkeypress(String value) { setOnkeypress(value); return this; } public TableFooter withOnkeydown(String value) { setOnkeydown(value); return this; } public TableFooter withOnkeyup(String value) { setOnkeyup(value); return this; } public TableFooter withAlign(Align value) { setAlign(value); return this; } public TableFooter withChar(String value) { setChar(value); return this; } public TableFooter withCharoff(String value) { setCharoff(value); return this; } public TableFooter withLinkend(Object value) { setLinkend(value); return this; } public TableFooter withHref(String value) { setHref(value); return this; } public TableFooter withXlinkType(String value) { setXlinkType(value); return this; } public TableFooter withXlinkRole(String value) { setXlinkRole(value); return this; } public TableFooter withArcrole(String value) { setArcrole(value); return this; } public TableFooter withXlinkTitle(String value) { setXlinkTitle(value); return this; } public TableFooter withShow(Show value) { setShow(value); return this; } public TableFooter withActuate(Actuate value) { setActuate(value); return this; } public TableFooter withId(String value) { setId(value); return this; } public TableFooter withVersion(String value) { setVersion(value); return this; } public TableFooter withXmlLang(String value) { setXmlLang(value); return this; } public TableFooter withBase(String value) { setBase(value); return this; } public TableFooter withRemap(String value) { setRemap(value); return this; } public TableFooter withXreflabel(String value) { setXreflabel(value); return this; } public TableFooter withRevisionflag(RevisionFlag value) { setRevisionflag(value); return this; } public TableFooter withDir(Direction value) { setDir(value); return this; } public TableFooter withArch(String value) { setArch(value); return this; } public TableFooter withAudience(String value) { setAudience(value); return this; } public TableFooter withCondition(String value) { setCondition(value); return this; } public TableFooter withConformance(String value) { setConformance(value); return this; } public TableFooter withOs(String value) { setOs(value); return this; } public TableFooter withRevisionAttribute(String value) { setRevisionAttribute(value); return this; } public TableFooter withSecurity(String value) { setSecurity(value); return this; } public TableFooter withUserlevel(String value) { setUserlevel(value); return this; } public TableFooter withVendor(String value) { setVendor(value); return this; } public TableFooter withWordsize(String value) { setWordsize(value); return this; } public TableFooter withAnnotations(String value) { setAnnotations(value); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy