Package org.camunda.bpm.model.dmn
Interface DmnModelInstance
-
- All Superinterfaces:
org.camunda.bpm.model.xml.ModelInstance
- All Known Implementing Classes:
DmnModelInstanceImpl
public interface DmnModelInstance extends org.camunda.bpm.model.xml.ModelInstance
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DmnModelInstanceclone()Copies the DMN model instance but not the model.DefinitionsgetDefinitions()voidsetDefinitions(Definitions definitions)Set the Dmn Definitions Root element
-
-
-
Method Detail
-
getDefinitions
Definitions getDefinitions()
- Returns:
- the
Definitions, root element of the Dmn Model.
-
setDefinitions
void setDefinitions(Definitions definitions)
Set the Dmn Definitions Root element- Parameters:
definitions- theDefinitionselement to set
-
clone
DmnModelInstance clone()
Copies the DMN model instance but not the model. So only the wrapped DOM document is cloned. Changes of the model are persistent between multiple model instances.- Specified by:
clonein interfaceorg.camunda.bpm.model.xml.ModelInstance- Returns:
- the new DMN model instance
-
-