Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Tigerstripe FAQ

< To: Tigerstripe

Tigerstripe Overview

Tigerstripe Workbench provides an integrated Model-Driven Engineering framework allowing users to create/edit/maintain models across large teams, configure transformations to code, documentation or specifications and integrate it in a continuous build environment.


What is the relationship with Tigerstripe Software?

This is the open-source incarnation of Tigerstripe Workbench as it was distributed by ex-Tigerstripe Software. In January'07 the source code for Tigerstripe was cleaned up and contributed to the Tigerstripe Eclipse Project as a sub-project of the Eclipse Technology Project.

What's up with version numbers?

The last non-open source version of Tigerstripe Workbench was released as v2.2.4 on http://www.tigerstripedev.net. This was a stop gap release for existing users of Tigerstripe until the first open-source releases were made available. Additionally, following Eclipse Guidelines, Tigerstripe release numbering needs to comply with Eclipse rules. In particular, during the incubation period only 0.xx versions can be released.

So, although the contributed code remains the same, the first open-source build (Incubation 0.3) corresponds to a bugfix release for the last non-open release (v2.2.4).

OSS/J Support with Tigerstripe

Tigerstripe has been used since 2006 to produce OSSJ APIs. Since 0.3, the support for OSSJ in Tigerstripe Workbench has changed. For more details visit the Tigerstripe_OSSJ page.

How do I Access Stereotype Values From a Template?

Most model components support accessing Stereotypes, but the method of access is the same for all types. (See also method return Stereotypes)

 #if(!$component.StereotypeInstances.isEmpty())
               <ts:stereotypes>
   #foreach ($instance in $component.StereotypeInstances)
                  <ts:stereotype name="$instance.Name">
     #foreach ($attribute in $instance.CharacterizingStereotype.Attributes)
                     <ts:stereotypeAttribute name="$attribute.Name" array="$attribute.Array">
       #if($attribute.Array == "false")
                       <ts:value>$instance.getAttributeValue($attribute)</ts:value>                       
       #else
         #foreach ($val in $instance.getAttributeValues($attribute))
                       <ts:value>$val</ts:value>                   
         #end
       #end
                     </ts:stereotypeAttribute>
     #end
                   </ts:stereotype>
   #end
               </ts:stereotypes>
 #end

Back to the top