org.plasma.runtime.ClassProvisioning Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.10.06 at 02:20:30 PM MST
//
package org.plasma.runtime;
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;
/**
* Java class for ClassProvisioning complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClassProvisioning">
* <complexContent>
* <extension base="{http://www.plasma.org/runtime}Configuration">
* <attribute name="classNamePrefix" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
* <attribute name="classNameSuffix" type="{http://www.w3.org/2001/XMLSchema}string" default="" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClassProvisioning")
@XmlSeeAlso({
ImplementationProvisioning.class,
InterfaceProvisioning.class
})
public abstract class ClassProvisioning
extends Configuration
{
@XmlAttribute(name = "classNamePrefix")
protected String classNamePrefix;
@XmlAttribute(name = "classNameSuffix")
protected String classNameSuffix;
/**
* Gets the value of the classNamePrefix property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClassNamePrefix() {
if (classNamePrefix == null) {
return "";
} else {
return classNamePrefix;
}
}
/**
* Sets the value of the classNamePrefix property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClassNamePrefix(String value) {
this.classNamePrefix = value;
}
/**
* Gets the value of the classNameSuffix property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClassNameSuffix() {
if (classNameSuffix == null) {
return "";
} else {
return classNameSuffix;
}
}
/**
* Sets the value of the classNameSuffix property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClassNameSuffix(String value) {
this.classNameSuffix = value;
}
}