CompositeStep_resume

connector CompositeStep_resume "Input port of a step (used for resume connector of a CompositeStep)"
    output Boolean occupied "true, if step is active"
        annotation (HideResult = true);
    input Boolean set "true, if transition fires and step is activated"
        annotation (HideResult = true);

    annotation (Icon(
        coordinateSystem(
            preserveAspectRatio = true,
            extent = {
                {-100, -100}, 
                {100, 100}}),
        graphics = {
            Polygon(
                points = {
                    {-100, 100}, 
                    {100, 0}, 
                    {-100, -100}, 
                    {-100, 100}},
                fillPattern = FillPattern.Solid)}));
end CompositeStep_resume;