blob: a6f808efd5261058f37fa521b02f04ae77a0117c [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;
import javax.xml.bind.annotation.XmlValue;
/**
* <p>
* Java class for regex-type complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="regex-type">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;attribute name="expression" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="flags" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="split" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "regex-type", propOrder = { "content" })
public class RegexType {
@XmlValue
protected String content;
@XmlAttribute
protected String expression;
@XmlAttribute
protected String flags;
@XmlAttribute
protected Boolean split;
/**
* Gets the value of the content property.
*
* @return possible object is {@link String }
*
*/
public String getContent() {
return content;
}
/**
* Gets the value of the expression property.
*
* @return possible object is {@link String }
*
*/
public String getExpression() {
return expression;
}
/**
* Gets the value of the flags property.
*
* @return possible object is {@link String }
*
*/
public String getFlags() {
return flags;
}
/**
* Gets the value of the split property.
*
* @return possible object is {@link Boolean }
*
*/
public boolean isSplit() {
if (split == null) {
return false;
} else {
return split;
}
}
/**
* Sets the value of the content property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setContent(String value) {
this.content = value;
}
/**
* Sets the value of the expression property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setExpression(String value) {
this.expression = value;
}
/**
* Sets the value of the flags property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setFlags(String value) {
this.flags = value;
}
/**
* Sets the value of the split property.
*
* @param value
* allowed object is {@link Boolean }
*
*/
public void setSplit(Boolean value) {
this.split = value;
}
}