All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.markusbernhardt.xmldoclet.xjc.AnnotationElement Maven / Gradle / Ivy

//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6 generiert 
// Siehe http://java.sun.com/xml/jaxb 
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. 
// Generiert: 2013.10.17 um 07:16:39 PM CEST 
//


package com.github.markusbernhardt.xmldoclet.xjc;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java-Klasse für annotationElement complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="annotationElement">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="qualifiedName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="defaultValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "annotationElement", propOrder = { "name", "qualifiedName", "type", "defaultValue" }) public class AnnotationElement { protected String name; protected String qualifiedName; protected String type; protected String defaultValue; /** * Ruft den Wert der name-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Legt den Wert der name-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Ruft den Wert der qualifiedName-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getQualifiedName() { return qualifiedName; } /** * Legt den Wert der qualifiedName-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setQualifiedName(String value) { this.qualifiedName = value; } /** * Ruft den Wert der type-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Ruft den Wert der defaultValue-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getDefaultValue() { return defaultValue; } /** * Legt den Wert der defaultValue-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setDefaultValue(String value) { this.defaultValue = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy