blob: d94ba73cb8b43d1d23f6f2dabe2fe288a55af18b [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;
/**
*
* If 'contents' is present, the file is written.
*
*
* <p>
* Java class for managed-file-type complex type.
*
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="managed-file-type">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;choice>
* &lt;element name="contents" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="path" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/choice>
* &lt;attribute name="deleteAfterUse" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* &lt;attribute name="resolveContents" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
* &lt;attribute name="uniqueIdPrefix" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "managed-file-type", propOrder = { "contents", "path" })
public class ManagedFileType {
protected String contents;
protected String path;
@XmlAttribute
protected Boolean deleteAfterUse;
@XmlAttribute(required = true)
protected String name;
@XmlAttribute
protected Boolean resolveContents;
@XmlAttribute
protected Boolean uniqueIdPrefix;
/**
* Gets the value of the contents property.
*
* @return possible object is {@link String }
*
*/
public String getContents() {
return contents;
}
/**
* Gets the value of the name property.
*
* @return possible object is {@link String }
*
*/
public String getName() {
return name;
}
/**
* Gets the value of the path property.
*
* @return possible object is {@link String }
*
*/
public String getPath() {
return path;
}
/**
* Gets the value of the deleteAfterUse property.
*
* @return possible object is {@link Boolean }
*
*/
public boolean isDeleteAfterUse() {
if (deleteAfterUse == null) {
return false;
} else {
return deleteAfterUse;
}
}
/**
* Gets the value of the resolveContents property.
*
* @return possible object is {@link Boolean }
*
*/
public boolean isResolveContents() {
if (resolveContents == null) {
return true;
} else {
return resolveContents;
}
}
/**
* Gets the value of the uniqueIdPrefix property.
*
* @return possible object is {@link Boolean }
*
*/
public boolean isUniqueIdPrefix() {
if (uniqueIdPrefix == null) {
return false;
} else {
return uniqueIdPrefix;
}
}
/**
* Sets the value of the contents property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setContents(String value) {
this.contents = value;
}
/**
* Sets the value of the deleteAfterUse property.
*
* @param value
* allowed object is {@link Boolean }
*
*/
public void setDeleteAfterUse(Boolean value) {
this.deleteAfterUse = value;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Sets the value of the path property.
*
* @param value
* allowed object is {@link String }
*
*/
public void setPath(String value) {
this.path = value;
}
/**
* Sets the value of the resolveContents property.
*
* @param value
* allowed object is {@link Boolean }
*
*/
public void setResolveContents(Boolean value) {
this.resolveContents = value;
}
/**
* Sets the value of the uniqueIdPrefix property.
*
* @param value
* allowed object is {@link Boolean }
*
*/
public void setUniqueIdPrefix(Boolean value) {
this.uniqueIdPrefix = value;
}
}