CompositeStep_suspend

connector CompositeStep_suspend "Output port of a step (used for suspend connector of a CompositeStep)"
    output Boolean available "true, if step is active"
        annotation (HideResult = true);
    input Boolean reset "true, if transition fires and step is deactivated"
        annotation (HideResult = true);

    annotation (Icon(
        coordinateSystem(
            preserveAspectRatio = true,
            extent = {
                {-100, -100}, 
                {100, 100}}),
        graphics = {
            Rectangle(
                extent = {
                    {-100, 100}, 
                    {100, -100}},
                fillColor = {255, 255, 255},
                fillPattern = FillPattern.Solid)}));
end CompositeStep_suspend;