public class JaxbParameter extends Object
Java class for Parameter complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Parameter">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="name">
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<minLength value="1"/>
</restriction>
</simpleType>
</element>
<element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
<element name="isCollection" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
<element name="implementationDetail" type="{}ImplementationDetail" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected List<JaxbImplementationDetail> |
implementationDetail |
protected Boolean |
isCollection |
protected String |
name |
protected String |
type |
| Constructor and Description |
|---|
JaxbParameter() |
| Modifier and Type | Method and Description |
|---|---|
List<JaxbImplementationDetail> |
getImplementationDetail()
Gets the value of the implementationDetail property.
|
String |
getName()
Gets the value of the name property.
|
String |
getType()
Gets the value of the type property.
|
Boolean |
isIsCollection()
Gets the value of the isCollection property.
|
void |
setIsCollection(Boolean value)
Sets the value of the isCollection property.
|
void |
setName(String value)
Sets the value of the name property.
|
void |
setType(String value)
Sets the value of the type property.
|
protected String name
protected String type
protected Boolean isCollection
protected List<JaxbImplementationDetail> implementationDetail
public String getName()
Stringpublic void setName(String value)
value - allowed object is
Stringpublic String getType()
Stringpublic void setType(String value)
value - allowed object is
Stringpublic Boolean isIsCollection()
Booleanpublic void setIsCollection(Boolean value)
value - allowed object is
Booleanpublic List<JaxbImplementationDetail> getImplementationDetail()
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 implementationDetail property.
For example, to add a new item, do as follows:
getImplementationDetail().add(newItem);
Objects of the following type(s) are allowed in the list
JaxbImplementationDetail
Copyright © 2006-2013. All Rights Reserved.