Package org.flowable.dmn.xml.converter
Class ConversionHelper
- java.lang.Object
-
- org.flowable.dmn.xml.converter.ConversionHelper
-
public class ConversionHelper extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected DecisioncurrentDecisionprotected DmnDiDiagramcurrentDiDiagramprotected DiEdgecurrentDiEdgeprotected DmnDiShapecurrentDiShapeprotected List<DmnDiDiagram>diDiagramsprotected Map<String,List<DmnDiEdge>>diEdgesprotected Map<String,List<DmnDiShape>>diShapesprotected DmnDefinitiondmnDefinition
-
Constructor Summary
Constructors Constructor Description ConversionHelper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddDiDiagram(DmnDiDiagram diDiagram)voidaddDiEdge(DmnDiEdge diEdge)voidaddDiShape(DmnDiShape diShape)DecisiongetCurrentDecision()DmnDiDiagramgetCurrentDiDiagram()DiEdgegetCurrentDiEdge()DmnDiShapegetCurrentDiShape()List<DmnDiDiagram>getDiDiagrams()List<DmnDiEdge>getDiEdges(String diagramId)List<DmnDiShape>getDiShapes(String diagramId)DmnDefinitiongetDmnDefinition()voidsetCurrentDecision(Decision currentDecision)voidsetCurrentDiDiagram(DmnDiDiagram currentDiDiagram)voidsetCurrentDiEdge(DiEdge currentDiEdge)voidsetCurrentDiShape(DmnDiShape currentDiShape)voidsetDmnDefinition(DmnDefinition dmnDefinition)
-
-
-
Field Detail
-
dmnDefinition
protected DmnDefinition dmnDefinition
-
currentDecision
protected Decision currentDecision
-
currentDiDiagram
protected DmnDiDiagram currentDiDiagram
-
currentDiShape
protected DmnDiShape currentDiShape
-
currentDiEdge
protected DiEdge currentDiEdge
-
diDiagrams
protected List<DmnDiDiagram> diDiagrams
-
diShapes
protected Map<String,List<DmnDiShape>> diShapes
-
-
Method Detail
-
getDmnDefinition
public DmnDefinition getDmnDefinition()
-
setDmnDefinition
public void setDmnDefinition(DmnDefinition dmnDefinition)
-
getCurrentDecision
public Decision getCurrentDecision()
-
setCurrentDecision
public void setCurrentDecision(Decision currentDecision)
-
addDiDiagram
public void addDiDiagram(DmnDiDiagram diDiagram)
-
addDiShape
public void addDiShape(DmnDiShape diShape)
-
addDiEdge
public void addDiEdge(DmnDiEdge diEdge)
-
getCurrentDiDiagram
public DmnDiDiagram getCurrentDiDiagram()
-
setCurrentDiDiagram
public void setCurrentDiDiagram(DmnDiDiagram currentDiDiagram)
-
getCurrentDiShape
public DmnDiShape getCurrentDiShape()
-
setCurrentDiShape
public void setCurrentDiShape(DmnDiShape currentDiShape)
-
getCurrentDiEdge
public DiEdge getCurrentDiEdge()
-
setCurrentDiEdge
public void setCurrentDiEdge(DiEdge currentDiEdge)
-
getDiDiagrams
public List<DmnDiDiagram> getDiDiagrams()
-
getDiShapes
public List<DmnDiShape> getDiShapes(String diagramId)
-
-