Trace
gcp/Item/Trace
include('gcp/Item/Trace')
Illustration | Trace | TraceCard | TraceGroup |
---|---|---|---|
Sprites
The item provides the following sriptes:
<$TraceXs>
<$TraceSm>
<$TraceMd>
<$TraceLg>
Trace
Load remotely
@startuml
' configures the library
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution"
' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml
' loads the package bootstrap
include('gcp/bootstrap')
' loads the Item which embeds the element Trace
include('gcp/Item/Trace')
' renders the element
Trace('Trace', 'Trace', 'an optional tech label', 'an optional description')
@enduml
Load locally
@startuml
' configures the library
!global $INCLUSION_MODE="local"
!global $LIB_BASE_LOCATION="../.."
' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml
' loads the package bootstrap
include('gcp/bootstrap')
' loads the Item which embeds the element Trace
include('gcp/Item/Trace')
' renders the element
Trace('Trace', 'Trace', 'an optional tech label', 'an optional description')
@enduml
TraceCard
Load remotely
@startuml
' configures the library
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution"
' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml
' loads the package bootstrap
include('gcp/bootstrap')
' loads the Item which embeds the element TraceCard
include('gcp/Item/Trace')
' renders the element
TraceCard('TraceCard', 'Trace Card', 'an optional description')
@enduml
Load locally
@startuml
' configures the library
!global $INCLUSION_MODE="local"
!global $LIB_BASE_LOCATION="../.."
' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml
' loads the package bootstrap
include('gcp/bootstrap')
' loads the Item which embeds the element TraceCard
include('gcp/Item/Trace')
' renders the element
TraceCard('TraceCard', 'Trace Card', 'an optional description')
@enduml
TraceGroup
Load remotely
@startuml
' configures the library
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution"
' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml
' loads the package bootstrap
include('gcp/bootstrap')
' loads the Item which embeds the element TraceGroup
include('gcp/Item/Trace')
' renders the element
TraceGroup('TraceGroup', 'Trace Group', 'an optional tech label') {
note as note
the content of the group
end note
}
@enduml
Load locally
@startuml
' configures the library
!global $INCLUSION_MODE="local"
!global $LIB_BASE_LOCATION="../.."
' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml
' loads the package bootstrap
include('gcp/bootstrap')
' loads the Item which embeds the element TraceGroup
include('gcp/Item/Trace')
' renders the element
TraceGroup('TraceGroup', 'Trace Group', 'an optional tech label') {
note as note
the content of the group
end note
}
@enduml