public class Domain extends Object
Java class for Domain complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Domain"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Bridge" type="{http://www.miuml.org/metamodel}Bridge" maxOccurs="unbounded" minOccurs="0"/> <element name="Extension" type="{http://www.miuml.org/metamodel}Extension" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="Name" use="required" type="{http://www.miuml.org/metamodel}Name" /> <attribute name="Alias" type="{http://www.miuml.org/metamodel}Alias" /> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected String |
alias |
protected List<Bridge> |
bridge |
protected List<Extension> |
extension |
protected String |
name |
Constructor and Description |
---|
Domain() |
Modifier and Type | Method and Description |
---|---|
String |
getAlias()
Gets the value of the alias property.
|
List<Bridge> |
getBridge()
Gets the value of the bridge property.
|
List<Extension> |
getExtension()
Gets the value of the extension property.
|
String |
getName()
Gets the value of the name property.
|
void |
setAlias(String value)
Sets the value of the alias property.
|
void |
setName(String value)
Sets the value of the name property.
|
public List<Bridge> getBridge()
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 bridge property.
For example, to add a new item, do as follows:
getBridge().add(newItem);
Objects of the following type(s) are allowed in the list
Bridge
public List<Extension> getExtension()
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 extension property.
For example, to add a new item, do as follows:
getExtension().add(newItem);
Objects of the following type(s) are allowed in the list
Extension
public String getName()
String
public void setName(String value)
value
- allowed object is
String
public String getAlias()
String
Copyright © 2012–2022. All rights reserved.