blob: 18d218df83abdbf65269b55408aa7f3d6e7e833a [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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>
* Java class for layout-type complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="layout-type">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;choice>
* &lt;element name="fill-layout" type="{http://org.eclipse.ptp/rm}fill-layout-type"/>
* &lt;element name="row-layout" type="{http://org.eclipse.ptp/rm}row-layout-type"/>
* &lt;element name="grid-layout" type="{http://org.eclipse.ptp/rm}grid-layout-type"/>
* &lt;element name="form-layout" type="{http://org.eclipse.ptp/rm}form-layout-type"/>
* &lt;/choice>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "layout-type", propOrder = { "fillLayout", "rowLayout", "gridLayout", "formLayout" })
public class LayoutType {
@XmlElement(name = "fill-layout")
protected FillLayoutType fillLayout;
@XmlElement(name = "row-layout")
protected RowLayoutType rowLayout;
@XmlElement(name = "grid-layout")
protected GridLayoutType gridLayout;
@XmlElement(name = "form-layout")
protected FormLayoutType formLayout;
/**
* Gets the value of the fillLayout property.
*
* @return possible object is {@link FillLayoutType }
*
*/
public FillLayoutType getFillLayout() {
return fillLayout;
}
/**
* Gets the value of the formLayout property.
*
* @return possible object is {@link FormLayoutType }
*
*/
public FormLayoutType getFormLayout() {
return formLayout;
}
/**
* Gets the value of the gridLayout property.
*
* @return possible object is {@link GridLayoutType }
*
*/
public GridLayoutType getGridLayout() {
return gridLayout;
}
/**
* Gets the value of the rowLayout property.
*
* @return possible object is {@link RowLayoutType }
*
*/
public RowLayoutType getRowLayout() {
return rowLayout;
}
/**
* Sets the value of the fillLayout property.
*
* @param value
* allowed object is {@link FillLayoutType }
*
*/
public void setFillLayout(FillLayoutType value) {
this.fillLayout = value;
}
/**
* Sets the value of the formLayout property.
*
* @param value
* allowed object is {@link FormLayoutType }
*
*/
public void setFormLayout(FormLayoutType value) {
this.formLayout = value;
}
/**
* Sets the value of the gridLayout property.
*
* @param value
* allowed object is {@link GridLayoutType }
*
*/
public void setGridLayout(GridLayoutType value) {
this.gridLayout = value;
}
/**
* Sets the value of the rowLayout property.
*
* @param value
* allowed object is {@link RowLayoutType }
*
*/
public void setRowLayout(RowLayoutType value) {
this.rowLayout = value;
}
}