public class ImportConfiguration extends Object
Java class for ImportConfiguration complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ImportConfiguration">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="SupportedNamespace" type="{http://www.modeldriven.org/fuml/config}SupportedNamespace" maxOccurs="unbounded"/>
<element name="NamespaceMapping" type="{http://www.modeldriven.org/fuml/config}NamespaceMapping" maxOccurs="unbounded" minOccurs="0"/>
<element name="Exemption" type="{http://www.modeldriven.org/fuml/config}ImportExemption" maxOccurs="unbounded"/>
<element name="Adapter" type="{http://www.modeldriven.org/fuml/config}ImportAdapter" maxOccurs="unbounded" minOccurs="0"/>
<element name="ExtensionPackage" type="{http://www.modeldriven.org/fuml/config}ExtensionPackage" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected List<ImportAdapter> |
adapter |
protected List<ImportExemption> |
exemption |
protected List<ExtensionPackage> |
extensionPackage |
protected List<NamespaceMapping> |
namespaceMapping |
protected List<SupportedNamespace> |
supportedNamespace |
| Constructor and Description |
|---|
ImportConfiguration() |
| Modifier and Type | Method and Description |
|---|---|
List<ImportAdapter> |
getAdapter()
Gets the value of the adapter property.
|
List<ImportExemption> |
getExemption()
Gets the value of the exemption property.
|
List<ExtensionPackage> |
getExtensionPackage()
Gets the value of the extensionPackage property.
|
List<NamespaceMapping> |
getNamespaceMapping()
Gets the value of the namespaceMapping property.
|
List<SupportedNamespace> |
getSupportedNamespace()
Gets the value of the supportedNamespace property.
|
protected List<SupportedNamespace> supportedNamespace
protected List<NamespaceMapping> namespaceMapping
protected List<ImportExemption> exemption
protected List<ImportAdapter> adapter
protected List<ExtensionPackage> extensionPackage
public List<SupportedNamespace> getSupportedNamespace()
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 Jakarta XML Binding object.
This is why there is not a set method for the supportedNamespace property.
For example, to add a new item, do as follows:
getSupportedNamespace().add(newItem);
Objects of the following type(s) are allowed in the list
SupportedNamespace
public List<NamespaceMapping> getNamespaceMapping()
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 Jakarta XML Binding object.
This is why there is not a set method for the namespaceMapping property.
For example, to add a new item, do as follows:
getNamespaceMapping().add(newItem);
Objects of the following type(s) are allowed in the list
NamespaceMapping
public List<ImportExemption> getExemption()
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 Jakarta XML Binding object.
This is why there is not a set method for the exemption property.
For example, to add a new item, do as follows:
getExemption().add(newItem);
Objects of the following type(s) are allowed in the list
ImportExemption
public List<ImportAdapter> getAdapter()
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 Jakarta XML Binding object.
This is why there is not a set method for the adapter property.
For example, to add a new item, do as follows:
getAdapter().add(newItem);
Objects of the following type(s) are allowed in the list
ImportAdapter
public List<ExtensionPackage> getExtensionPackage()
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 Jakarta XML Binding object.
This is why there is not a set method for the extensionPackage property.
For example, to add a new item, do as follows:
getExtensionPackage().add(newItem);
Objects of the following type(s) are allowed in the list
ExtensionPackage
Copyright © 2023. All rights reserved.