use of org.whole.lang.workflows.model.Breakpoint in project whole by wholeplatform.
the class BreakpointPart method getModelSpecificChildren.
protected List<IEntity> getModelSpecificChildren() {
Breakpoint entity = getModelEntity();
List<IEntity> children = new ArrayList<IEntity>(6);
children.add(entity.getLabel());
children.add(entity.getDisabled());
children.add(entity.getHitCount());
children.add(entity.getCondition());
children.add(entity.getConditionTest());
children.add(entity.getShowVariables());
return children;
}
Aggregations