blob: 36cde663c72ef758650a6864a4e4c15d2cda1630 [file] [log] [blame]
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10
// 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.10 at 02:31:08 PM CET
//
package org.eclipse.ptp.rm.lml.internal.core.elements;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for componentlayout_type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="componentlayout_type">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="gid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="active" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "componentlayout_type")
@XmlSeeAlso({
ChartlayoutType.class,
UsagebarlayoutType.class,
InfoboxlayoutType.class,
NodedisplaylayoutType.class,
TablelayoutType.class
})
public class ComponentlayoutType {
@XmlAttribute
protected String id;
@XmlAttribute(required = true)
protected String gid;
@XmlAttribute
protected Boolean active;
/**
* 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 gid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGid() {
return gid;
}
/**
* Sets the value of the gid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGid(String value) {
this.gid = value;
}
/**
* Gets the value of the active property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isActive() {
if (active == null) {
return true;
} else {
return active;
}
}
/**
* Sets the value of the active property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setActive(Boolean value) {
this.active = value;
}
}