org.plasma.xml.sdox
Class Type

java.lang.Object
  extended by org.plasma.xml.sdox.Type

public class Type
extends Object

Java class for Type complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="Type">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="baseType" type="{commonj.sdo}URI" maxOccurs="unbounded" minOccurs="0"/>
         <element name="property" type="{commonj.sdo}Property" maxOccurs="unbounded" minOccurs="0"/>
         <element name="aliasName" type="{commonj.sdo}String" maxOccurs="unbounded" minOccurs="0"/>
         <any/>
       </sequence>
       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}ID" />
       <attribute name="uri" type="{commonj.sdo}URI" />
       <attribute name="dataType" type="{commonj.sdo}Boolean" />
       <attribute name="open" type="{commonj.sdo}Boolean" />
       <attribute name="sequenced" type="{commonj.sdo}Boolean" />
       <attribute name="abstract" type="{commonj.sdo}Boolean" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  Boolean _abstract
           
protected  List<String> aliasNames
           
protected  List<Element> anies
           
protected  List<String> baseTypes
           
protected  Boolean dataType
           
protected  String name
           
protected  Boolean open
           
protected  List<Property> properties
           
protected  Boolean sequenced
           
protected  String uri
           
 
Constructor Summary
Type()
           
 
Method Summary
 List<String> getAliasNames()
          Gets the value of the aliasNames property.
 List<Element> getAnies()
          Gets the value of the anies property.
 List<String> getBaseTypes()
          Gets the value of the baseTypes property.
 String getName()
          Gets the value of the name property.
 Map<QName,String> getOtherAttributes()
          Gets a map that contains attributes that aren't bound to any typed property on this class.
 List<Property> getProperties()
          Gets the value of the properties property.
 String getUri()
          Gets the value of the uri property.
 Boolean isAbstract()
          Gets the value of the abstract property.
 Boolean isDataType()
          Gets the value of the dataType property.
 Boolean isOpen()
          Gets the value of the open property.
 Boolean isSequenced()
          Gets the value of the sequenced property.
 void setAbstract(Boolean value)
          Sets the value of the abstract property.
 void setDataType(Boolean value)
          Sets the value of the dataType property.
 void setName(String value)
          Sets the value of the name property.
 void setOpen(Boolean value)
          Sets the value of the open property.
 void setSequenced(Boolean value)
          Sets the value of the sequenced property.
 void setUri(String value)
          Sets the value of the uri property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

baseTypes

protected List<String> baseTypes

properties

protected List<Property> properties

aliasNames

protected List<String> aliasNames

anies

protected List<Element> anies

name

protected String name

uri

protected String uri

dataType

protected Boolean dataType

open

protected Boolean open

sequenced

protected Boolean sequenced

_abstract

protected Boolean _abstract
Constructor Detail

Type

public Type()
Method Detail

getBaseTypes

public List<String> getBaseTypes()
Gets the value of the baseTypes 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 baseTypes property.

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

    getBaseTypes().add(newItem);
 

Objects of the following type(s) are allowed in the list String


getProperties

public List<Property> getProperties()
Gets the value of the properties 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 properties property.

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

    getProperties().add(newItem);
 

Objects of the following type(s) are allowed in the list Property


getAliasNames

public List<String> getAliasNames()
Gets the value of the aliasNames 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 aliasNames property.

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

    getAliasNames().add(newItem);
 

Objects of the following type(s) are allowed in the list String


getAnies

public List<Element> getAnies()
Gets the value of the anies 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 anies property.

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

    getAnies().add(newItem);
 

Objects of the following type(s) are allowed in the list Element


getName

public String getName()
Gets the value of the name property.

Returns:
possible object is String

setName

public void setName(String value)
Sets the value of the name property.

Parameters:
value - allowed object is String

getUri

public String getUri()
Gets the value of the uri property.

Returns:
possible object is String

setUri

public void setUri(String value)
Sets the value of the uri property.

Parameters:
value - allowed object is String

isDataType

public Boolean isDataType()
Gets the value of the dataType property.

Returns:
possible object is Boolean

setDataType

public void setDataType(Boolean value)
Sets the value of the dataType property.

Parameters:
value - allowed object is Boolean

isOpen

public Boolean isOpen()
Gets the value of the open property.

Returns:
possible object is Boolean

setOpen

public void setOpen(Boolean value)
Sets the value of the open property.

Parameters:
value - allowed object is Boolean

isSequenced

public Boolean isSequenced()
Gets the value of the sequenced property.

Returns:
possible object is Boolean

setSequenced

public void setSequenced(Boolean value)
Sets the value of the sequenced property.

Parameters:
value - allowed object is Boolean

isAbstract

public Boolean isAbstract()
Gets the value of the abstract property.

Returns:
possible object is Boolean

setAbstract

public void setAbstract(Boolean value)
Sets the value of the abstract property.

Parameters:
value - allowed object is Boolean

getOtherAttributes

public Map<QName,String> getOtherAttributes()
Gets a map that contains attributes that aren't bound to any typed property on this class.

the map is keyed by the name of the attribute and the value is the string value of the attribute. the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter.

Returns:
always non-null


Copyright © 2013. All rights reserved.