blob: e529399d67064031797a5525bef16a4122b99407 [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 java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>
* Java class for tab-folder-type complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="tab-folder-type">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="layout" type="{http://org.eclipse.ptp/rm}layout-type" minOccurs="0"/>
* &lt;element name="layout-data" type="{http://org.eclipse.ptp/rm}layout-data-type" minOccurs="0"/>
* &lt;element name="item" type="{http://org.eclipse.ptp/rm}tab-item-type" maxOccurs="unbounded"/>
* &lt;element name="tooltip" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="font" type="{http://org.eclipse.ptp/rm}font-type" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="background" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="style" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tab-folder-type", propOrder = { "layout", "layoutData", "item", "tooltip", "font" })
public class TabFolderType {
protected LayoutType layout;
@XmlElement(name = "layout-data")
protected LayoutDataType layoutData;
@XmlElement(required = true)
protected List<TabItemType> item;
protected String tooltip;
protected FontType font;
@XmlAttribute
protected String background;
@XmlAttribute
protected String style;
/**
* Gets the value of the background property.
*
* @return possible object is {@link String }
*
*/
public String getBackground() {
return background;
}
/**
* Gets the value of the font property.
*
* @return possible object is {@link FontType }
*
*/
public FontType getFont() {
return font;
}
/**
* Gets the value of the item property.
*
* <p>
* 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
* <CODE>set</CODE> method for the item property.
*
* <p>
* For example, to add a new item, do as follows:
*
* <pre>
* getItem().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link TabItemType }
*
*
*/
public List<TabItemType> getItem() {
if (item == null) {
item = new ArrayList<TabItemType>();
}
return this.item;
}
/**
* Gets the value of the layout property.
*
* @return possible object is {@link LayoutType }
*
*/
public LayoutType getLayout() {
return layout;
}
/**
* Gets the value of the layoutData property.
*
* @return possible object is {@link LayoutDataType }
*
*/
public LayoutDataType getLayoutData() {
return layoutData;
}
/**
* Gets the value of the style property.
*
* @return possible object is {@link String }
*
*/
public String getStyle() {
return style;
}
/**
* Gets the value of the tooltip property.
*
* @return possible object is {@link String }
*
*/
public String getTooltip() {
return tooltip;
}
/**
* Sets the value of the background property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setBackground(String value) {
this.background = value;
}
/**
* Sets the value of the font property.
*
* @param value
* allowed object is {@link FontType }
*
*/
public void setFont(FontType value) {
this.font = value;
}
/**
* Sets the value of the layout property.
*
* @param value
* allowed object is {@link LayoutType }
*
*/
public void setLayout(LayoutType value) {
this.layout = value;
}
/**
* Sets the value of the layoutData property.
*
* @param value
* allowed object is {@link LayoutDataType }
*
*/
public void setLayoutData(LayoutDataType value) {
this.layoutData = value;
}
/**
* Sets the value of the style property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setStyle(String value) {
this.style = value;
}
/**
* Sets the value of the tooltip property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setTooltip(String value) {
this.tooltip = value;
}
}