Package org.graphdrawing.graphml
Class NodeType
- java.lang.Object
-
- org.graphdrawing.graphml.NodeType
-
public class NodeType extends Object
Complex type for theelement. Java class for node.type complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="node.type"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://graphml.graphdrawing.org/xmlns}desc" minOccurs="0"/> <choice> <sequence> <choice maxOccurs="unbounded" minOccurs="0"> <element ref="{http://graphml.graphdrawing.org/xmlns}data"/> <element ref="{http://graphml.graphdrawing.org/xmlns}port"/> </choice> <element ref="{http://graphml.graphdrawing.org/xmlns}graph" minOccurs="0"/> </sequence> <element ref="{http://graphml.graphdrawing.org/xmlns}locator"/> </choice> </sequence> <attGroup ref="{http://graphml.graphdrawing.org/xmlns}node.extra.attrib"/> <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Object>dataOrPortprotected Stringdescprotected GraphTypegraphprotected Stringidprotected LocatorTypelocatorprotected BigIntegerparseIndegreeprotected BigIntegerparseOutdegree
-
Constructor Summary
Constructors Constructor Description NodeType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Object>getDataOrPort()Gets the value of the dataOrPort property.StringgetDesc()Gets the value of the desc property.GraphTypegetGraph()Gets the value of the graph property.StringgetId()Gets the value of the id property.LocatorTypegetLocator()Gets the value of the locator property.BigIntegergetParseIndegree()Gets the value of the parseIndegree property.BigIntegergetParseOutdegree()Gets the value of the parseOutdegree property.voidsetDesc(String value)Sets the value of the desc property.voidsetGraph(GraphType value)Sets the value of the graph property.voidsetId(String value)Sets the value of the id property.voidsetLocator(LocatorType value)Sets the value of the locator property.voidsetParseIndegree(BigInteger value)Sets the value of the parseIndegree property.voidsetParseOutdegree(BigInteger value)Sets the value of the parseOutdegree property.
-
-
-
Field Detail
-
desc
protected String desc
-
graph
protected GraphType graph
-
locator
protected LocatorType locator
-
id
protected String id
-
parseIndegree
protected BigInteger parseIndegree
-
parseOutdegree
protected BigInteger parseOutdegree
-
-
Method Detail
-
getDesc
public String getDesc()
Gets the value of the desc property.- Returns:
- possible object is
String
-
setDesc
public void setDesc(String value)
Sets the value of the desc property.- Parameters:
value- allowed object isString
-
getDataOrPort
public List<Object> getDataOrPort()
Gets the value of the dataOrPort 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
setmethod for the dataOrPort property.For example, to add a new item, do as follows:
getDataOrPort().add(newItem);Objects of the following type(s) are allowed in the list
DataTypePortType
-
getGraph
public GraphType getGraph()
Gets the value of the graph property.- Returns:
- possible object is
GraphType
-
setGraph
public void setGraph(GraphType value)
Sets the value of the graph property.- Parameters:
value- allowed object isGraphType
-
getLocator
public LocatorType getLocator()
Gets the value of the locator property.- Returns:
- possible object is
LocatorType
-
setLocator
public void setLocator(LocatorType value)
Sets the value of the locator property.- Parameters:
value- allowed object isLocatorType
-
setId
public void setId(String value)
Sets the value of the id property.- Parameters:
value- allowed object isString
-
getParseIndegree
public BigInteger getParseIndegree()
Gets the value of the parseIndegree property.- Returns:
- possible object is
BigInteger
-
setParseIndegree
public void setParseIndegree(BigInteger value)
Sets the value of the parseIndegree property.- Parameters:
value- allowed object isBigInteger
-
getParseOutdegree
public BigInteger getParseOutdegree()
Gets the value of the parseOutdegree property.- Returns:
- possible object is
BigInteger
-
setParseOutdegree
public void setParseOutdegree(BigInteger value)
Sets the value of the parseOutdegree property.- Parameters:
value- allowed object isBigInteger
-
-