$project

( documentation for Telosys generator version 3.3.0 )


Current project with configuration parameters ( variables, folders, ... )

Since : 2.0.7

Attributes and methods
.allVariables : Variable[]

Returns all the variables available for the current project
( the specific variables defined for the project and the standard variables )

Example :
   #foreach( $var in $project.allVariables )
    $var.name = $var.value
   #end

Since : 2.0.7

.locationFullPath : String

Returns the current project location ( full path )

Example :
   $project.locationFullPath

Since : 2.0.7

.modelsFolderFullPath : String

Returns models folder ( full path ) for the current project

Example :
   $project.modelsFolderFullPath

Since : 3.3.0

.specificVariables : Variable[]

Returns the specific variables defined for the current project
( the specific variables defined for the project and the standard variables )

Example :
   #foreach( $var in $project.specificVariables )
    $var.name = $var.value
   #end

Since : 2.0.7

.templatesFolderFullPath : String

Returns templates folder ( full path ) for the current project

Example :
   $project.templatesFolderFullPath

Since : 3.0.0