blob: 920462102af0a82c02f773900f73399be7b8af43 [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 template-type complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="template-type">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;attribute name="pattern" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="separator" type="{http://www.w3.org/2001/XMLSchema}string" default=" " />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "template-type")
public class TemplateType {
@XmlAttribute
protected String pattern;
@XmlAttribute
protected String separator;
/**
* Gets the value of the pattern property.
*
* @return possible object is {@link String }
*
*/
public String getPattern() {
return pattern;
}
/**
* Gets the value of the separator property.
*
* @return possible object is {@link String }
*
*/
public String getSeparator() {
if (separator == null) {
return " "; //$NON-NLS-1$
} else {
return separator;
}
}
/**
* Sets the value of the pattern property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setPattern(String value) {
this.pattern = value;
}
/**
* Sets the value of the separator property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setSeparator(String value) {
this.separator = value;
}
}