com.github.nill14.utils.init.schema.StringProperty Maven / Gradle / Ivy
package com.github.nill14.utils.init.schema;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for StringProperty complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StringProperty">
* <simpleContent>
* <extension base="<http://www.github.com/nill14/utils/init/serviceRegistry>Property">
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </simpleContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StringProperty")
public class StringProperty
extends Property
{
@XmlAttribute(name = "name")
protected String name;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy