blob: 5f428165f6aada1887493afbf249387f0451a601 [file] [log] [blame]
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-b02-fcs
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2011.04.21 at 02:35:28 PM CDT
//
package org.eclipse.ptp.rm.jaxb.core.data;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* <p>
* Java class for row-data-type complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="row-data-type">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;attribute name="exclude" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* &lt;attribute name="height" type="{http://www.w3.org/2001/XMLSchema}int" />
* &lt;attribute name="width" type="{http://www.w3.org/2001/XMLSchema}int" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "row-data-type")
public class RowDataType {
@XmlAttribute
protected Boolean exclude;
@XmlAttribute
protected Integer height;
@XmlAttribute
protected Integer width;
/**
* Gets the value of the height property.
*
* @return possible object is {@link Integer }
*
*/
public Integer getHeight() {
return height;
}
/**
* Gets the value of the width property.
*
* @return possible object is {@link Integer }
*
*/
public Integer getWidth() {
return width;
}
/**
* Gets the value of the exclude property.
*
* @return possible object is {@link Boolean }
*
*/
public boolean isExclude() {
if (exclude == null) {
return false;
} else {
return exclude;
}
}
/**
* Sets the value of the exclude property.
*
* @param value
* allowed object is {@link Boolean }
*
*/
public void setExclude(Boolean value) {
this.exclude = value;
}
/**
* Sets the value of the height property.
*
* @param value
* allowed object is {@link Integer }
*
*/
public void setHeight(Integer value) {
this.height = value;
}
/**
* Sets the value of the width property.
*
* @param value
* allowed object is {@link Integer }
*
*/
public void setWidth(Integer value) {
this.width = value;
}
}