public class Nominal extends Object
Java class for nominal complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="nominal">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="description" type="{http://www.decision-deck.org/2019/XMCDA-2.2.3}description" minOccurs="0"/>
<element name="label" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected Description |
description |
protected List<String> |
label |
| Constructor and Description |
|---|
Nominal() |
| Modifier and Type | Method and Description |
|---|---|
Description |
getDescription()
Gets the value of the description property.
|
List<String> |
getLabel()
Gets the value of the label property.
|
void |
setDescription(Description value)
Sets the value of the description property.
|
protected Description description
public Description getDescription()
Descriptionpublic void setDescription(Description value)
value - allowed object is
Descriptionpublic List<String> getLabel()
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 label property.
For example, to add a new item, do as follows:
getLabel().add(newItem);
Objects of the following type(s) are allowed in the list
String
Copyright © 2013–2021 Sébastien Bigaret, Patrick Meyer. All rights reserved.