You are not logged in. Click here to log in.

Application Lifecycle Management

Search In Project

Search inClear

@Label #17056/HEAD / v10
Tags:  not added yet

@Label

Labels relate to ontologies (label is an OWL annotation). Labeling a field or component maybe provides for alternative names. They can be used to relate components or fields to another naming convention, terminology, or ontologies. Labels are optional.

Synopsis

@Label(<String>)
arg - an alternative name

Type

Documentation Annotation

Scope

Class (subroutine), field (variable)

Example


!  @Description("CSMLite Plant Component")
...
!  @Label("Plant Growth")
!  @Execute 
SUBROUTINE Plant
    
    USE, INTRINSIC :: ISO_C_BINDING
    IMPLICIT NONE

!  @Description("Daily maximum temperature in degrees Centigrade")
!  @Label("Maximum Temperature")
!  @In 
   REAL(C_FLOAT) :: TMAX
!  @Description("Day of Year")
!  @In
   INTEGER(C_INT) :: DOY
!  @Description("Dynamic Control Variable")
!  @In
   CHARACTER(kind = C_CHAR, len = 5) : DYN
...
!  @Description("Leaf Area Index")
!  @Out
   REAL(C_FLOAT) :: LAI
...