Package org.omg.spec.bpmn.model
Class Diagram
- java.lang.Object
-
- org.omg.spec.bpmn.model.Diagram
-
- Direct Known Subclasses:
BPMNDiagram
public abstract class Diagram extends Object
Java class for Diagram complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Diagram"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="documentation" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="resolution" type="{http://www.w3.org/2001/XMLSchema}double" /> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringdocumentationprotected Stringidprotected Stringnameprotected Doubleresolution
-
Constructor Summary
Constructors Constructor Description Diagram()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDocumentation()Gets the value of the documentation property.StringgetId()Gets the value of the id property.StringgetName()Gets the value of the name property.DoublegetResolution()Gets the value of the resolution property.voidsetDocumentation(String value)Sets the value of the documentation property.voidsetId(String value)Sets the value of the id property.voidsetName(String value)Sets the value of the name property.voidsetResolution(Double value)Sets the value of the resolution property.
-
-
-
Method Detail
-
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 isString
-
getDocumentation
public String getDocumentation()
Gets the value of the documentation property.- Returns:
- possible object is
String
-
setDocumentation
public void setDocumentation(String value)
Sets the value of the documentation property.- Parameters:
value- allowed object isString
-
getResolution
public Double getResolution()
Gets the value of the resolution property.- Returns:
- possible object is
Double
-
setResolution
public void setResolution(Double value)
Sets the value of the resolution property.- Parameters:
value- allowed object isDouble
-
-