@Override
public List<IPropertyDescriptor> getCustomPropertyDescriptors() {
List<IPropertyDescriptor> list = super.getCustomPropertyDescriptors();
if (timerExist() && !hasTimeoutTransition()) {
list.add(new TimerActionPropertyDescriptor(PROPERTY_TIMER_ACTION, Messages.getString("Timer.action"), this));
}
list.add(new PropertyDescriptor(PROPERTY_IGNORE_SUBSTITUTION, Messages.getString("property.ignoreSubstitution")));
return list;
}