Skip to content

Commit

Permalink
fix(engine): implement new medhod from model api
Browse files Browse the repository at this point in the history
related to #CAM-6308
  • Loading branch information
meyerdan committed Jun 30, 2016
1 parent 7d4cda1 commit dfc083c
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@
import org.camunda.bpm.model.xml.instance.DomDocument;
import org.camunda.bpm.model.xml.instance.ModelElementInstance;
import org.camunda.bpm.model.xml.type.ModelElementType;
import org.camunda.bpm.model.xml.validation.ModelElementValidator;
import org.camunda.bpm.model.xml.validation.ValidationResults;

public class ModifiableBpmnModelInstance implements BpmnModelInstance {

Expand Down Expand Up @@ -248,4 +250,8 @@ public ModifiableBpmnModelInstance asyncAfterInnerMiActivity(String activityId)
return this;
}

public ValidationResults validate(Collection<ModelElementValidator<?>> validators) {
return null;
}

}

0 comments on commit dfc083c

Please sign in to comment.