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 String
documentation
protected String
id
protected String
name
protected Double
resolution
-
Constructor Summary
Constructors Constructor Description Diagram()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDocumentation()
Gets the value of the documentation property.String
getId()
Gets the value of the id property.String
getName()
Gets the value of the name property.Double
getResolution()
Gets the value of the resolution property.void
setDocumentation(String value)
Sets the value of the documentation property.void
setId(String value)
Sets the value of the id property.void
setName(String value)
Sets the value of the name property.void
setResolution(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
-
-