@Override public boolean accepts(final PropertyType type) { return AssigneeType.name.equals(type.getName()); }
@Override public boolean accepts(final PropertyType type) { return TimerSettingsType.name.equals(type.getName()); }
@Override public boolean accepts(final PropertyType type) { return ScriptTypeList.name.equals(type.getName()); }
@Override public boolean accepts(final PropertyType type) { return StringType.name.equals(type.getName()); }
@Override public boolean accepts(final PropertyType type) { return VariablesType.name.equals(type.getName()); }
@Override public boolean accepts(final PropertyType type) { return BooleanType.name.equals(type.getName()); }
@Override public boolean accepts(final PropertyType type) { return DoubleType.name.equals(type.getName()); }
@Override public boolean accepts(final PropertyType type) { return AssignmentsType.name.equals(type.getName()); }
@Override public boolean accepts(final PropertyType type) { return IntegerType.name.equals(type.getName()); }
@Override public boolean accepts(final PropertyType type) { return ScriptType.name.equals(type.getName()); }
@Override public boolean accepts(final PropertyType type) { return EnumType.name.equals(type.getName()); }
@Override public boolean accepts(final PropertyType type) { return ColorType.name.equals(type.getName()); }
@Override public boolean accepts(final PropertyType type) { return TaskPropertyType.name.equals(type.getName()); }
private void assertConditionalEventExecutionSet(CancellingConditionalEventExecutionSet executionSet, String conditionExpressionScript, String conditionExpressionLanguage, String conditionExpressionType, boolean isCancelling) { assertNotNull(executionSet); assertNotNull(executionSet.getConditionExpression()); assertNotNull(executionSet.getConditionExpression().getValue()); assertNotNull(executionSet.getConditionExpression().getType()); assertNotNull(executionSet.getCancelActivity()); assertEquals(conditionExpressionLanguage, executionSet.getConditionExpression().getValue().getLanguage()); assertEquals(conditionExpressionScript, executionSet.getConditionExpression().getValue().getScript()); assertEquals(conditionExpressionType, executionSet.getConditionExpression().getType().getName()); assertEquals(isCancelling, executionSet.getCancelActivity().getValue()); } }
private void assertConditionalEventExecutionSet(InterruptingConditionalEventExecutionSet executionSet, String conditionExpressionScript, String conditionExpressionLanguage, String conditionExpressionType, boolean isInterrupting) { assertNotNull(executionSet); assertNotNull(executionSet.getConditionExpression()); assertNotNull(executionSet.getConditionExpression().getValue()); assertNotNull(executionSet.getConditionExpression().getType()); assertNotNull(executionSet.getIsInterrupting()); assertEquals(conditionExpressionLanguage, executionSet.getConditionExpression().getValue().getLanguage()); assertEquals(conditionExpressionScript, executionSet.getConditionExpression().getValue().getScript()); assertEquals(conditionExpressionType, executionSet.getConditionExpression().getType().getName()); assertEquals(isInterrupting, executionSet.getIsInterrupting().getValue()); } }
private void assertConditionalEventExecutionSet(CancellingConditionalEventExecutionSet executionSet, String conditionExpressionScript, String conditionExpressionLanguage, String conditionExpressionType, boolean isCancelling) { assertNotNull(executionSet); assertNotNull(executionSet.getConditionExpression()); assertNotNull(executionSet.getConditionExpression().getValue()); assertNotNull(executionSet.getConditionExpression().getType()); assertNotNull(executionSet.getCancelActivity()); assertEquals(conditionExpressionLanguage, executionSet.getConditionExpression().getValue().getLanguage()); assertEquals(conditionExpressionScript, executionSet.getConditionExpression().getValue().getScript()); assertEquals(conditionExpressionType, executionSet.getConditionExpression().getType().getName()); assertEquals(isCancelling, executionSet.getCancelActivity().getValue()); } }