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

org.w3._1999.xhtml.Colgroup Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.08.07 at 06:17:52 PM CEST 
//


package org.w3._1999.xhtml;

import org.w3._1999.xsl.format.TableBorderStyleType;

import javax.xml.bind.annotation.*;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://www.w3.org/1999/xhtml}col" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attGroup ref="{http://www.w3.org/1999/xhtml}TableAlignmentAttributes"/>
 *       <attGroup ref="{http://www.w3.org/1999/XSL/Format}TableBorderLeftAttributes"/>
 *       <attGroup ref="{http://www.w3.org/1999/XSL/Format}TableBorderAttributes"/>
 *       <attGroup ref="{http://www.w3.org/1999/XSL/Format}TableBorderTopAttributes"/>
 *       <attGroup ref="{http://www.w3.org/1999/XSL/Format}TableBackgroundColorAttributes"/>
 *       <attribute name="char">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             <length value="1"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *       <attribute name="span" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" default="1" />
 *       <attribute name="width" type="{http://www.w3.org/1999/xhtml}TableWidthType" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "cols" }) @XmlRootElement(name = "colgroup") public class Colgroup { @XmlElement(name = "col") protected List cols; @XmlAttribute(name = "char") protected String _char; @XmlAttribute(name = "span") @XmlSchemaType(name = "positiveInteger") protected BigInteger span; @XmlAttribute(name = "width") protected String width; @XmlAttribute(name = "valign") protected String valign; @XmlAttribute(name = "align") protected String align; @XmlAttribute(name = "border-left-style", namespace = "http://www.w3.org/1999/XSL/Format") protected TableBorderStyleType borderLeftStyle; @XmlAttribute(name = "border-left-color", namespace = "http://www.w3.org/1999/XSL/Format") protected String borderLeftColor; @XmlAttribute(name = "border-left-width", namespace = "http://www.w3.org/1999/XSL/Format") protected String borderLeftWidth; @XmlAttribute(name = "border-right-style", namespace = "http://www.w3.org/1999/XSL/Format") protected TableBorderStyleType borderRightStyle; @XmlAttribute(name = "border-bottom-style", namespace = "http://www.w3.org/1999/XSL/Format") protected TableBorderStyleType borderBottomStyle; @XmlAttribute(name = "border-right-color", namespace = "http://www.w3.org/1999/XSL/Format") protected String borderRightColor; @XmlAttribute(name = "border-bottom-color", namespace = "http://www.w3.org/1999/XSL/Format") protected String borderBottomColor; @XmlAttribute(name = "border-right-width", namespace = "http://www.w3.org/1999/XSL/Format") protected String borderRightWidth; @XmlAttribute(name = "border-bottom-width", namespace = "http://www.w3.org/1999/XSL/Format") protected String borderBottomWidth; @XmlAttribute(name = "border-top-style", namespace = "http://www.w3.org/1999/XSL/Format") protected TableBorderStyleType borderTopStyle; @XmlAttribute(name = "border-top-color", namespace = "http://www.w3.org/1999/XSL/Format") protected String borderTopColor; @XmlAttribute(name = "border-top-width", namespace = "http://www.w3.org/1999/XSL/Format") protected String borderTopWidth; @XmlAttribute(name = "background-color", namespace = "http://www.w3.org/1999/XSL/Format") protected String backgroundColor; /** * Gets the value of the cols 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 cols property. * *

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

     *    getCols().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Col } * * */ public List getCols() { if (cols == null) { cols = new ArrayList<>(); } return this.cols; } /** * 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 span property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getSpan() { if (span == null) { return new BigInteger("1"); } else { return span; } } /** * Sets the value of the span property. * * @param value * allowed object is * {@link BigInteger } * */ public void setSpan(BigInteger value) { this.span = value; } /** * Gets the value of the width property. * * @return * possible object is * {@link String } * */ public String getWidth() { return width; } /** * Sets the value of the width property. * * @param value * allowed object is * {@link String } * */ public void setWidth(String value) { this.width = value; } /** * Gets the value of the valign property. * * @return * possible object is * {@link String } * */ public String getValign() { return valign; } /** * Sets the value of the valign property. * * @param value * allowed object is * {@link String } * */ public void setValign(String value) { this.valign = value; } /** * Gets the value of the align property. * * @return * possible object is * {@link String } * */ public String getAlign() { if (align == null) { return "inherit"; } else { return align; } } /** * Sets the value of the align property. * * @param value * allowed object is * {@link String } * */ public void setAlign(String value) { this.align = value; } /** * Gets the value of the borderLeftStyle property. * * @return * possible object is * {@link TableBorderStyleType } * */ public TableBorderStyleType getBorderLeftStyle() { if (borderLeftStyle == null) { return TableBorderStyleType.INHERIT; } else { return borderLeftStyle; } } /** * Sets the value of the borderLeftStyle property. * * @param value * allowed object is * {@link TableBorderStyleType } * */ public void setBorderLeftStyle(TableBorderStyleType value) { this.borderLeftStyle = value; } /** * Gets the value of the borderLeftColor property. * * @return * possible object is * {@link String } * */ public String getBorderLeftColor() { if (borderLeftColor == null) { return "inherit"; } else { return borderLeftColor; } } /** * Sets the value of the borderLeftColor property. * * @param value * allowed object is * {@link String } * */ public void setBorderLeftColor(String value) { this.borderLeftColor = value; } /** * Gets the value of the borderLeftWidth property. * * @return * possible object is * {@link String } * */ public String getBorderLeftWidth() { if (borderLeftWidth == null) { return "inherit"; } else { return borderLeftWidth; } } /** * Sets the value of the borderLeftWidth property. * * @param value * allowed object is * {@link String } * */ public void setBorderLeftWidth(String value) { this.borderLeftWidth = value; } /** * Gets the value of the borderRightStyle property. * * @return * possible object is * {@link TableBorderStyleType } * */ public TableBorderStyleType getBorderRightStyle() { if (borderRightStyle == null) { return TableBorderStyleType.INHERIT; } else { return borderRightStyle; } } /** * Sets the value of the borderRightStyle property. * * @param value * allowed object is * {@link TableBorderStyleType } * */ public void setBorderRightStyle(TableBorderStyleType value) { this.borderRightStyle = value; } /** * Gets the value of the borderBottomStyle property. * * @return * possible object is * {@link TableBorderStyleType } * */ public TableBorderStyleType getBorderBottomStyle() { if (borderBottomStyle == null) { return TableBorderStyleType.INHERIT; } else { return borderBottomStyle; } } /** * Sets the value of the borderBottomStyle property. * * @param value * allowed object is * {@link TableBorderStyleType } * */ public void setBorderBottomStyle(TableBorderStyleType value) { this.borderBottomStyle = value; } /** * Gets the value of the borderRightColor property. * * @return * possible object is * {@link String } * */ public String getBorderRightColor() { if (borderRightColor == null) { return "inherit"; } else { return borderRightColor; } } /** * Sets the value of the borderRightColor property. * * @param value * allowed object is * {@link String } * */ public void setBorderRightColor(String value) { this.borderRightColor = value; } /** * Gets the value of the borderBottomColor property. * * @return * possible object is * {@link String } * */ public String getBorderBottomColor() { if (borderBottomColor == null) { return "inherit"; } else { return borderBottomColor; } } /** * Sets the value of the borderBottomColor property. * * @param value * allowed object is * {@link String } * */ public void setBorderBottomColor(String value) { this.borderBottomColor = value; } /** * Gets the value of the borderRightWidth property. * * @return * possible object is * {@link String } * */ public String getBorderRightWidth() { if (borderRightWidth == null) { return "inherit"; } else { return borderRightWidth; } } /** * Sets the value of the borderRightWidth property. * * @param value * allowed object is * {@link String } * */ public void setBorderRightWidth(String value) { this.borderRightWidth = value; } /** * Gets the value of the borderBottomWidth property. * * @return * possible object is * {@link String } * */ public String getBorderBottomWidth() { if (borderBottomWidth == null) { return "inherit"; } else { return borderBottomWidth; } } /** * Sets the value of the borderBottomWidth property. * * @param value * allowed object is * {@link String } * */ public void setBorderBottomWidth(String value) { this.borderBottomWidth = value; } /** * Gets the value of the borderTopStyle property. * * @return * possible object is * {@link TableBorderStyleType } * */ public TableBorderStyleType getBorderTopStyle() { if (borderTopStyle == null) { return TableBorderStyleType.INHERIT; } else { return borderTopStyle; } } /** * Sets the value of the borderTopStyle property. * * @param value * allowed object is * {@link TableBorderStyleType } * */ public void setBorderTopStyle(TableBorderStyleType value) { this.borderTopStyle = value; } /** * Gets the value of the borderTopColor property. * * @return * possible object is * {@link String } * */ public String getBorderTopColor() { if (borderTopColor == null) { return "inherit"; } else { return borderTopColor; } } /** * Sets the value of the borderTopColor property. * * @param value * allowed object is * {@link String } * */ public void setBorderTopColor(String value) { this.borderTopColor = value; } /** * Gets the value of the borderTopWidth property. * * @return * possible object is * {@link String } * */ public String getBorderTopWidth() { if (borderTopWidth == null) { return "inherit"; } else { return borderTopWidth; } } /** * Sets the value of the borderTopWidth property. * * @param value * allowed object is * {@link String } * */ public void setBorderTopWidth(String value) { this.borderTopWidth = value; } /** * Gets the value of the backgroundColor property. * * @return * possible object is * {@link String } * */ public String getBackgroundColor() { return backgroundColor; } /** * Sets the value of the backgroundColor property. * * @param value * allowed object is * {@link String } * */ public void setBackgroundColor(String value) { this.backgroundColor = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy