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

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

There is a newer version: 1.0.5
Show newest version
//
// 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.30 um 10:14:13 PM CET 
//


package com.github.markusbernhardt.xmldoclet.xjc;

import java.util.ArrayList;
import java.util.List;
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-Klasse für methodParameter complex type. * *

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

 * <complexType name="methodParameter">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="type" type="{}typeInfo" minOccurs="0"/>
 *         <element name="annotation" type="{}annotationInstance" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "methodParameter", propOrder = { "type", "annotation" }) public class MethodParameter { protected TypeInfo type; protected List annotation; @XmlAttribute(name = "name") protected String name; /** * Ruft den Wert der type-Eigenschaft ab. * * @return * possible object is * {@link TypeInfo } * */ public TypeInfo getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is * {@link TypeInfo } * */ public void setType(TypeInfo value) { this.type = value; } /** * Gets the value of the annotation property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the annotation property. * *

* For example, to add a new item, do as follows: *

     *    getAnnotation().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link AnnotationInstance } * * */ public List getAnnotation() { if (annotation == null) { annotation = new ArrayList(); } return this.annotation; } /** * 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; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy