Search in sources :

Example 1 with Breakpoint

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;
}
Also used : Breakpoint(org.whole.lang.workflows.model.Breakpoint) IEntity(org.whole.lang.model.IEntity) ArrayList(java.util.ArrayList)

Aggregations

ArrayList (java.util.ArrayList)1 IEntity (org.whole.lang.model.IEntity)1 Breakpoint (org.whole.lang.workflows.model.Breakpoint)1