Main Content

getStereotype

Find stereotype in profile by name

    Description

    stereotype = getStereotype(profile,name) finds a stereotype in a profile by name.

    example

    Examples

    collapse all

    Create a profile for latency characteristics.

    profile = systemcomposer.profile.Profile.createProfile("LatencyProfileB");
    
    connLatency = profile.addStereotype("ConnectorLatency",AppliesTo="Connector");
    connLatency.addProperty("secure",Type="boolean");
    connLatency.addProperty("linkDistance",Type="double");
    
    nodeLatency = profile.addStereotype("NodeLatency",AppliesTo="Component");
    nodeLatency.addProperty("resources",Type="double",DefaultValue="1");
    
    portLatency = profile.addStereotype("PortLatency",AppliesTo="Port");
    portLatency.addProperty("queueDepth",Type="double");
    portLatency.addProperty("dummy",Type="int32");

    Get the stereotype ConnectorLatency in the profile.

    stereotype = getStereotype(profile,"ConnectorLatency")
    stereotype = 
      Stereotype with properties:
    
                        Name: 'ConnectorLatency'
                 Description: ''
                      Parent: [0×0 systemcomposer.profile.Stereotype]
                   AppliesTo: 'Connector'
                    Abstract: 0
                        Icon: ''
        ComponentHeaderColor: [210 210 210]
          ConnectorLineColor: [168 168 168]
          ConnectorLineStyle: 'Default'
          FullyQualifiedName: 'LatencyProfileB.ConnectorLatency'
                     Profile: [1×1 systemcomposer.profile.Profile]
             OwnedProperties: [1×2 systemcomposer.profile.Property]
                  Properties: [1×2 systemcomposer.profile.Property]
    
    

    Close the profile to rerun this example.

    profile.close(true)
    

    Input Arguments

    collapse all

    Profile, specified as a systemcomposer.profile.Profile object.

    Stereotype name, specified as a character vector or string. The name of the stereotype must be unique within the profile.

    Example: "electricalComponent"

    Data Types: char | string

    Output Arguments

    collapse all

    Stereotype found, returned as a systemcomposer.profile.Stereotype object.

    More About

    collapse all

    Version History

    Introduced in R2019a