blob: 39ec0345e084cf5e1d037446b1811e0057a959a2 [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.02.27 at 02:35:53 PM CST
//
package org.eclipse.ptp.rm.jaxb.core.data;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>
* Java class for anonymous complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;attribute name="horizontalSpacing" type="{http://www.w3.org/2001/XMLSchema}integer" />
* &lt;attribute name="makeColumnsEqualWidth" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
* &lt;attribute name="marginBottom" type="{http://www.w3.org/2001/XMLSchema}integer" />
* &lt;attribute name="marginHeight" type="{http://www.w3.org/2001/XMLSchema}integer" />
* &lt;attribute name="marginLeft" type="{http://www.w3.org/2001/XMLSchema}integer" />
* &lt;attribute name="marginRight" type="{http://www.w3.org/2001/XMLSchema}integer" />
* &lt;attribute name="marginTop" type="{http://www.w3.org/2001/XMLSchema}integer" />
* &lt;attribute name="marginWidth" type="{http://www.w3.org/2001/XMLSchema}integer" />
* &lt;attribute name="numColumns" type="{http://www.w3.org/2001/XMLSchema}integer" />
* &lt;attribute name="verticalSpacing" type="{http://www.w3.org/2001/XMLSchema}integer" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "grid-layout")
public class GridLayout {
@XmlAttribute
protected BigInteger horizontalSpacing;
@XmlAttribute
protected Boolean makeColumnsEqualWidth;
@XmlAttribute
protected BigInteger marginBottom;
@XmlAttribute
protected BigInteger marginHeight;
@XmlAttribute
protected BigInteger marginLeft;
@XmlAttribute
protected BigInteger marginRight;
@XmlAttribute
protected BigInteger marginTop;
@XmlAttribute
protected BigInteger marginWidth;
@XmlAttribute
protected BigInteger numColumns;
@XmlAttribute
protected BigInteger verticalSpacing;
/**
* Gets the value of the horizontalSpacing property.
*
* @return possible object is {@link BigInteger }
*
*/
public BigInteger getHorizontalSpacing() {
return horizontalSpacing;
}
/**
* Gets the value of the marginBottom property.
*
* @return possible object is {@link BigInteger }
*
*/
public BigInteger getMarginBottom() {
return marginBottom;
}
/**
* Gets the value of the marginHeight property.
*
* @return possible object is {@link BigInteger }
*
*/
public BigInteger getMarginHeight() {
return marginHeight;
}
/**
* Gets the value of the marginLeft property.
*
* @return possible object is {@link BigInteger }
*
*/
public BigInteger getMarginLeft() {
return marginLeft;
}
/**
* Gets the value of the marginRight property.
*
* @return possible object is {@link BigInteger }
*
*/
public BigInteger getMarginRight() {
return marginRight;
}
/**
* Gets the value of the marginTop property.
*
* @return possible object is {@link BigInteger }
*
*/
public BigInteger getMarginTop() {
return marginTop;
}
/**
* Gets the value of the marginWidth property.
*
* @return possible object is {@link BigInteger }
*
*/
public BigInteger getMarginWidth() {
return marginWidth;
}
/**
* Gets the value of the numColumns property.
*
* @return possible object is {@link BigInteger }
*
*/
public BigInteger getNumColumns() {
return numColumns;
}
/**
* Gets the value of the verticalSpacing property.
*
* @return possible object is {@link BigInteger }
*
*/
public BigInteger getVerticalSpacing() {
return verticalSpacing;
}
/**
* Gets the value of the makeColumnsEqualWidth property.
*
* @return possible object is {@link Boolean }
*
*/
public boolean isMakeColumnsEqualWidth() {
if (makeColumnsEqualWidth == null) {
return true;
} else {
return makeColumnsEqualWidth;
}
}
/**
* Sets the value of the horizontalSpacing property.
*
* @param value
* allowed object is {@link BigInteger }
*
*/
public void setHorizontalSpacing(BigInteger value) {
this.horizontalSpacing = value;
}
/**
* Sets the value of the makeColumnsEqualWidth property.
*
* @param value
* allowed object is {@link Boolean }
*
*/
public void setMakeColumnsEqualWidth(Boolean value) {
this.makeColumnsEqualWidth = value;
}
/**
* Sets the value of the marginBottom property.
*
* @param value
* allowed object is {@link BigInteger }
*
*/
public void setMarginBottom(BigInteger value) {
this.marginBottom = value;
}
/**
* Sets the value of the marginHeight property.
*
* @param value
* allowed object is {@link BigInteger }
*
*/
public void setMarginHeight(BigInteger value) {
this.marginHeight = value;
}
/**
* Sets the value of the marginLeft property.
*
* @param value
* allowed object is {@link BigInteger }
*
*/
public void setMarginLeft(BigInteger value) {
this.marginLeft = value;
}
/**
* Sets the value of the marginRight property.
*
* @param value
* allowed object is {@link BigInteger }
*
*/
public void setMarginRight(BigInteger value) {
this.marginRight = value;
}
/**
* Sets the value of the marginTop property.
*
* @param value
* allowed object is {@link BigInteger }
*
*/
public void setMarginTop(BigInteger value) {
this.marginTop = value;
}
/**
* Sets the value of the marginWidth property.
*
* @param value
* allowed object is {@link BigInteger }
*
*/
public void setMarginWidth(BigInteger value) {
this.marginWidth = value;
}
/**
* Sets the value of the numColumns property.
*
* @param value
* allowed object is {@link BigInteger }
*
*/
public void setNumColumns(BigInteger value) {
this.numColumns = value;
}
/**
* Sets the value of the verticalSpacing property.
*
* @param value
* allowed object is {@link BigInteger }
*
*/
public void setVerticalSpacing(BigInteger value) {
this.verticalSpacing = value;
}
}