Merge pull request #6 from pniewiejski/pr-update-plantuml-1.2020.07

Replace function with procedure declaration when no return specified
pull/84/head
Victor Lupu 6 years ago committed by GitHub
commit 1a8e29113a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -49,24 +49,24 @@ skinparam rectangle<<boundary>> {
' Layout ' Layout
' ################################## ' ##################################
!function HIDE_STEREOTYPE() !procedure HIDE_STEREOTYPE()
hide stereotype hide stereotype
!endfunction !endprocedure
!function LAYOUT_AS_SKETCH() !procedure LAYOUT_AS_SKETCH()
skinparam backgroundColor #EEEBDC skinparam backgroundColor #EEEBDC
skinparam handwritten true skinparam handwritten true
skinparam defaultFontName "Comic Sans MS" skinparam defaultFontName "Comic Sans MS"
center footer <font color=red>Warning:</font> Created for discussion, needs to be validated center footer <font color=red>Warning:</font> Created for discussion, needs to be validated
!endfunction !endprocedure
!function LAYOUT_TOP_DOWN() !procedure LAYOUT_TOP_DOWN()
top to bottom direction top to bottom direction
!endfunction !endprocedure
!function LAYOUT_LEFT_RIGHT() !procedure LAYOUT_LEFT_RIGHT()
left to right direction left to right direction
!endfunction !endprocedure
' Boundaries ' Boundaries
' ################################## ' ##################################
@ -81,105 +81,105 @@ left to right direction
' Relationship ' Relationship
' ################################## ' ##################################
!unquoted function Rel_($alias1, $alias2, $label, $direction="") !unquoted procedure Rel_($alias1, $alias2, $label, $direction="")
$alias1 $direction $alias2 : **$label** $alias1 $direction $alias2 : **$label**
!endfunction !endprocedure
!unquoted function Rel_($alias1, $alias2, $label, $techn, $direction="") !unquoted procedure Rel_($alias1, $alias2, $label, $techn, $direction="")
$alias1 $direction $alias2 : **$label**\n//<size:$TECHN_FONT_SIZE>[$techn]</size>// $alias1 $direction $alias2 : **$label**\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//
!endfunction !endprocedure
!unquoted function Rel($from, $to, $label) !unquoted procedure Rel($from, $to, $label)
Rel_($from, $to, $label, "-->>") Rel_($from, $to, $label, "-->>")
!endfunction !endprocedure
!unquoted function Rel($from, $to, $label, $techn) !unquoted procedure Rel($from, $to, $label, $techn)
Rel_($from, $to, $label, $techn, "-->>") Rel_($from, $to, $label, $techn, "-->>")
!endfunction !endprocedure
!unquoted function Rel_Back($from, $to, $label) !unquoted procedure Rel_Back($from, $to, $label)
Rel_($from, $to, $label, "<<--") Rel_($from, $to, $label, "<<--")
!endfunction !endprocedure
!unquoted function Rel_Back($from, $to, $label, $techn) !unquoted procedure Rel_Back($from, $to, $label, $techn)
Rel_($from, $to, $label, $techn, "<<--") Rel_($from, $to, $label, $techn, "<<--")
!endfunction !endprocedure
!unquoted function Rel_Neighbor($from, $to, $label) !unquoted procedure Rel_Neighbor($from, $to, $label)
Rel_($from, $to, $label, "->>") Rel_($from, $to, $label, "->>")
!endfunction !endprocedure
!unquoted function Rel_Neighbor($from, $to, $label, $techn) !unquoted procedure Rel_Neighbor($from, $to, $label, $techn)
Rel_($from, $to, $label, $techn, "->>") Rel_($from, $to, $label, $techn, "->>")
!endfunction !endprocedure
!unquoted function Rel_Back_Neighbor($from, $to, $label) !unquoted procedure Rel_Back_Neighbor($from, $to, $label)
Rel_($from, $to, $label, "<<-") Rel_($from, $to, $label, "<<-")
!endfunction !endprocedure
!unquoted function Rel_Back_Neighbor($from, $to, $label, $techn) !unquoted procedure Rel_Back_Neighbor($from, $to, $label, $techn)
Rel_($from, $to, $label, $techn, "<<-") Rel_($from, $to, $label, $techn, "<<-")
!endfunction !endprocedure
!unquoted function Rel_D($from, $to, $label) !unquoted procedure Rel_D($from, $to, $label)
Rel_($from, $to, $label, "-DOWN->>") Rel_($from, $to, $label, "-DOWN->>")
!endfunction !endprocedure
!unquoted function Rel_D($from, $to, $label, $techn) !unquoted procedure Rel_D($from, $to, $label, $techn)
Rel_($from, $to, $label, $techn, "-DOWN->>") Rel_($from, $to, $label, $techn, "-DOWN->>")
!endfunction !endprocedure
!unquoted function Rel_Down($from, $to, $label) !unquoted procedure Rel_Down($from, $to, $label)
Rel_($from, $to, $label, "-DOWN->>") Rel_($from, $to, $label, "-DOWN->>")
!endfunction !endprocedure
!unquoted function Rel_Down($from, $to, $label, $techn) !unquoted procedure Rel_Down($from, $to, $label, $techn)
Rel_($from, $to, $label, $techn, "-DOWN->>") Rel_($from, $to, $label, $techn, "-DOWN->>")
!endfunction !endprocedure
!unquoted function Rel_U($from, $to, $label) !unquoted procedure Rel_U($from, $to, $label)
Rel_($from, $to, $label, "-UP->>") Rel_($from, $to, $label, "-UP->>")
!endfunction !endprocedure
!unquoted function Rel_U($from, $to, $label, $techn) !unquoted procedure Rel_U($from, $to, $label, $techn)
Rel_($from, $to, $label, $techn, "-UP->>") Rel_($from, $to, $label, $techn, "-UP->>")
!endfunction !endprocedure
!unquoted function Rel_Up($from, $to, $label) !unquoted procedure Rel_Up($from, $to, $label)
Rel_($from, $to, $label, "-UP->>") Rel_($from, $to, $label, "-UP->>")
!endfunction !endprocedure
!unquoted function Rel_Up($from, $to, $label, $techn) !unquoted procedure Rel_Up($from, $to, $label, $techn)
Rel_($from, $to, $label, $techn, "-UP->>") Rel_($from, $to, $label, $techn, "-UP->>")
!endfunction !endprocedure
!unquoted function Rel_L($from, $to, $label) !unquoted procedure Rel_L($from, $to, $label)
Rel_($from, $to, $label, "-LEFT->>") Rel_($from, $to, $label, "-LEFT->>")
!endfunction !endprocedure
!unquoted function Rel_L($from, $to, $label, $techn) !unquoted procedure Rel_L($from, $to, $label, $techn)
Rel_($from, $to, $label, $techn, "-LEFT->>") Rel_($from, $to, $label, $techn, "-LEFT->>")
!endfunction !endprocedure
!unquoted function Rel_Left($from, $to, $label) !unquoted procedure Rel_Left($from, $to, $label)
Rel_($from, $to, $label, "-LEFT->>") Rel_($from, $to, $label, "-LEFT->>")
!endfunction !endprocedure
!unquoted function Rel_Left($from, $to, $label, $techn) !unquoted procedure Rel_Left($from, $to, $label, $techn)
Rel_($from, $to, $label, $techn, "-LEFT->>") Rel_($from, $to, $label, $techn, "-LEFT->>")
!endfunction !endprocedure
!unquoted function Rel_R($from, $to, $label) !unquoted procedure Rel_R($from, $to, $label)
Rel_($from, $to, $label, "-RIGHT->>") Rel_($from, $to, $label, "-RIGHT->>")
!endfunction !endprocedure
!unquoted function Rel_R($from, $to, $label, $techn) !unquoted procedure Rel_R($from, $to, $label, $techn)
Rel_($from, $to, $label, $techn, "-RIGHT->>") Rel_($from, $to, $label, $techn, "-RIGHT->>")
!endfunction !endprocedure
!unquoted function Rel_Right($from, $to, $label) !unquoted procedure Rel_Right($from, $to, $label)
Rel_($from, $to, $label, "-RIGHT->>") Rel_($from, $to, $label, "-RIGHT->>")
!endfunction !endprocedure
!unquoted function Rel_Right($from, $to, $label, $techn) !unquoted procedure Rel_Right($from, $to, $label, $techn)
Rel_($from, $to, $label, $techn, "-RIGHT->>") Rel_($from, $to, $label, $techn, "-RIGHT->>")
!endfunction !endprocedure
' Layout Helpers ' Layout Helpers
' ################################## ' ##################################
!unquoted function Lay_D($from, $to) !unquoted procedure Lay_D($from, $to)
$from -[hidden]D- $to $from -[hidden]D- $to
!endfunction !endprocedure
!unquoted function Lay_U($from, $to) !unquoted procedure Lay_U($from, $to)
$from -[hidden]U- $to $from -[hidden]U- $to
!endfunction !endprocedure
!unquoted function Lay_R($from, $to) !unquoted procedure Lay_R($from, $to)
$from -[hidden]R- $to $from -[hidden]R- $to
!endfunction !endprocedure
!unquoted function Lay_L($from, $to) !unquoted procedure Lay_L($from, $to)
$from -[hidden]L- $to $from -[hidden]L- $to
!endfunction !endprocedure

@ -32,7 +32,7 @@ skinparam database<<component>> {
' Layout ' Layout
' ################################## ' ##################################
!function LAYOUT_WITH_LEGEND() !procedure LAYOUT_WITH_LEGEND()
hide stereotype hide stereotype
legend right legend right
|<color:$LEGEND_TITLE_COLOR>**Legend**</color> | |<color:$LEGEND_TITLE_COLOR>**Legend**</color> |
@ -43,21 +43,21 @@ legend right
|<$EXTERNAL_PERSON_BG_COLOR> external person | |<$EXTERNAL_PERSON_BG_COLOR> external person |
|<$EXTERNAL_SYSTEM_BG_COLOR> external system | |<$EXTERNAL_SYSTEM_BG_COLOR> external system |
endlegend endlegend
!endfunction !endprocedure
' Elements ' Elements
' ################################## ' ##################################
!unquoted function Component($alias, $label, $techn) !unquoted procedure Component($alias, $label, $techn)
rectangle "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//" <<component>> as $alias rectangle "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//" <<component>> as $alias
!endfunction !endprocedure
!unquoted function Component($alias, $label, $techn, $descr) !unquoted procedure Component($alias, $label, $techn, $descr)
rectangle "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//\n\n $descr" <<component>> as $alias rectangle "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//\n\n $descr" <<component>> as $alias
!endfunction !endprocedure
!unquoted function ComponentDb($alias, $label, $techn) !unquoted procedure ComponentDb($alias, $label, $techn)
database "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//" <<component>> as $alias database "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//" <<component>> as $alias
!endfunction !endprocedure
!unquoted function ComponentDb($alias, $label, $techn, $descr) !unquoted procedure ComponentDb($alias, $label, $techn, $descr)
database "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//\n\n $descr" <<component>> as $alias database "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//\n\n $descr" <<component>> as $alias
!endfunction !endprocedure

@ -32,7 +32,7 @@ skinparam database<<container>> {
' Layout ' Layout
' ################################## ' ##################################
!function LAYOUT_WITH_LEGEND() !procedure LAYOUT_WITH_LEGEND()
hide stereotype hide stereotype
legend right legend right
|<color:$LEGEND_TITLE_COLOR>**Legend**</color> | |<color:$LEGEND_TITLE_COLOR>**Legend**</color> |
@ -42,24 +42,24 @@ legend right
|<$EXTERNAL_PERSON_BG_COLOR> external person | |<$EXTERNAL_PERSON_BG_COLOR> external person |
|<$EXTERNAL_SYSTEM_BG_COLOR> external system | |<$EXTERNAL_SYSTEM_BG_COLOR> external system |
endlegend endlegend
!endfunction !endprocedure
' Elements ' Elements
' ################################## ' ##################################
!unquoted function Container($alias, $label, $techn) !unquoted procedure Container($alias, $label, $techn)
rectangle "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//" <<container>> as $alias rectangle "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//" <<container>> as $alias
!endfunction !endprocedure
!unquoted function Container($alias, $label, $techn, $descr) !unquoted procedure Container($alias, $label, $techn, $descr)
rectangle "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//\n\n $descr" <<container>> as $alias rectangle "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//\n\n $descr" <<container>> as $alias
!endfunction !endprocedure
!unquoted function ContainerDb($alias, $label, $techn) !unquoted procedure ContainerDb($alias, $label, $techn)
database "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//" <<container>> as $alias database "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//" <<container>> as $alias
!endfunction !endprocedure
!unquoted function ContainerDb($alias, $label, $techn, $descr) !unquoted procedure ContainerDb($alias, $label, $techn, $descr)
database "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//\n\n $descr" <<container>> as $alias database "==$label\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//\n\n $descr" <<container>> as $alias
!endfunction !endprocedure
' Boundaries ' Boundaries
' ################################## ' ##################################

@ -63,7 +63,7 @@ BorderColor #8A8A8A
' Layout ' Layout
' ################################## ' ##################################
!function LAYOUT_WITH_LEGEND() !procedure LAYOUT_WITH_LEGEND()
hide stereotype hide stereotype
legend right legend right
|<color:$LEGEND_TITLE_COLOR>**Legend**</color> | |<color:$LEGEND_TITLE_COLOR>**Legend**</color> |
@ -72,52 +72,52 @@ legend right
|<$EXTERNAL_PERSON_BG_COLOR> external person | |<$EXTERNAL_PERSON_BG_COLOR> external person |
|<$EXTERNAL_SYSTEM_BG_COLOR> external system | |<$EXTERNAL_SYSTEM_BG_COLOR> external system |
endlegend endlegend
!endfunction !endprocedure
' Elements ' Elements
' ################################## ' ##################################
!unquoted function Person($alias, $label) !unquoted procedure Person($alias, $label)
rectangle "==$label" <<person>> as $alias rectangle "==$label" <<person>> as $alias
!endfunction !endprocedure
!unquoted function Person($alias, $label, $descr) !unquoted procedure Person($alias, $label, $descr)
rectangle "==$label\n\n $descr" <<person>> as $alias rectangle "==$label\n\n $descr" <<person>> as $alias
!endfunction !endprocedure
!unquoted function Person_Ext($alias, $label) !unquoted procedure Person_Ext($alias, $label)
rectangle "==$label" <<external_person>> as $alias rectangle "==$label" <<external_person>> as $alias
!endfunction !endprocedure
!unquoted function Person_Ext($alias, $label, $descr) !unquoted procedure Person_Ext($alias, $label, $descr)
rectangle "==$label\n\n $descr" <<external_person>> as $alias rectangle "==$label\n\n $descr" <<external_person>> as $alias
!endfunction !endprocedure
!unquoted function System($alias, $label) !unquoted procedure System($alias, $label)
rectangle "==$label" <<system>> as $alias rectangle "==$label" <<system>> as $alias
!endfunction !endprocedure
!unquoted function System($alias, $label, $descr) !unquoted procedure System($alias, $label, $descr)
rectangle "==$label\n\n $descr" <<system>> as $alias rectangle "==$label\n\n $descr" <<system>> as $alias
!endfunction !endprocedure
!unquoted function System_Ext($alias, $label) !unquoted procedure System_Ext($alias, $label)
rectangle "==$label" <<external_system>> as $alias rectangle "==$label" <<external_system>> as $alias
!endfunction !endprocedure
!unquoted function System_Ext($alias, $label, $descr) !unquoted procedure System_Ext($alias, $label, $descr)
rectangle "==$label\n\n $descr" <<external_system>> as $alias rectangle "==$label\n\n $descr" <<external_system>> as $alias
!endfunction !endprocedure
!unquoted function SystemDb($alias, $label) !unquoted procedure SystemDb($alias, $label)
database "==$label" <<system>> as $alias database "==$label" <<system>> as $alias
!endfunction !endprocedure
!unquoted function SystemDb($alias, $label, $descr) !unquoted procedure SystemDb($alias, $label, $descr)
database "==$label\n\n $descr" <<system>> as $alias database "==$label\n\n $descr" <<system>> as $alias
!endfunction !endprocedure
!unquoted function SystemDb_Ext($alias, $label) !unquoted procedure SystemDb_Ext($alias, $label)
database "==$label" <<external_system>> as $alias database "==$label" <<external_system>> as $alias
!endfunction !endprocedure
!unquoted function SystemDb_ext($alias, $label, $descr) !unquoted procedure SystemDb_ext($alias, $label, $descr)
database "==$label\n\n $descr" <<external_system>> as $alias database "==$label\n\n $descr" <<external_system>> as $alias
!endfunction !endprocedure
' Boundaries ' Boundaries
' ################################## ' ##################################

@ -18,13 +18,13 @@
!$index=1 !$index=1
!function increment($step=1) !procedure increment($step=1)
!$index = $index + $step !$index = $index + $step
!endfunction !endprocedure
!function setIndex($new_index) !procedure setIndex($new_index)
!$index=$new_index !$index=$new_index
!endfunction !endprocedure
' Relationship override ' Relationship override
' ################################## ' ##################################
@ -32,187 +32,187 @@
' Relationship ' Relationship
' ################################## ' ##################################
!unquoted function Rel_($e_index, $alias1, $alias2, $label, $direction="") !unquoted procedure Rel_($e_index, $alias1, $alias2, $label, $direction="")
$alias1 $direction $alias2 : **$e_index: $label** $alias1 $direction $alias2 : **$e_index: $label**
!endfunction !endprocedure
!unquoted function Rel_($e_index, $alias1, $alias2, $label, $techn, $direction="") !unquoted procedure Rel_($e_index, $alias1, $alias2, $label, $techn, $direction="")
$alias1 $direction $alias2 : **$e_index: $label**\n//<size:$TECHN_FONT_SIZE>[$techn]</size>// $alias1 $direction $alias2 : **$e_index: $label**\n//<size:$TECHN_FONT_SIZE>[$techn]</size>//
!endfunction !endprocedure
!unquoted function Rel($from, $to, $label) !unquoted procedure Rel($from, $to, $label)
Rel_($index, $from, $to, $label, "-->>") Rel_($index, $from, $to, $label, "-->>")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel($from, $to, $label, $techn) !unquoted procedure Rel($from, $to, $label, $techn)
Rel_($index, $from, $to, $label, $techn, "-->>") Rel_($index, $from, $to, $label, $techn, "-->>")
increment() increment()
!endfunction !endprocedure
!unquoted function RelIndex($e_index, $from, $to, $label) !unquoted procedure RelIndex($e_index, $from, $to, $label)
Rel_($e_index, $from, $to, $label, "-->>") Rel_($e_index, $from, $to, $label, "-->>")
!endfunction !endprocedure
!unquoted function RelIndex($e_index, $from, $to, $label, $tech) !unquoted procedure RelIndex($e_index, $from, $to, $label, $tech)
Rel_($e_index, $from, $to, $label, $tech, "-->>") Rel_($e_index, $from, $to, $label, $tech, "-->>")
!endfunction !endprocedure
!unquoted function Rel_Back($from, $to, $label) !unquoted procedure Rel_Back($from, $to, $label)
Rel_($index, $from, $to, $label, "<<--") Rel_($index, $from, $to, $label, "<<--")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel_Back($from, $to, $label, $techn) !unquoted procedure Rel_Back($from, $to, $label, $techn)
Rel_($index, $from, $to, $label, $techn, "<<--") Rel_($index, $from, $to, $label, $techn, "<<--")
increment() increment()
!endfunction !endprocedure
!unquoted function RelIndex_Back($e_index, $from, $to, $label) !unquoted procedure RelIndex_Back($e_index, $from, $to, $label)
Rel_($e_index, $from, $to, $label, "<<--") Rel_($e_index, $from, $to, $label, "<<--")
!endfunction !endprocedure
!unquoted function RelIndex_Back($e_index, $from, $to, $label, $techn) !unquoted procedure RelIndex_Back($e_index, $from, $to, $label, $techn)
Rel_($e_index, $from, $to, $label, $techn, "<<--") Rel_($e_index, $from, $to, $label, $techn, "<<--")
!endfunction !endprocedure
!unquoted function Rel_Neighbor($from, $to, $label) !unquoted procedure Rel_Neighbor($from, $to, $label)
Rel_($index, $from, $to, $label, "->>") Rel_($index, $from, $to, $label, "->>")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel_Neighbor($from, $to, $label, $techn) !unquoted procedure Rel_Neighbor($from, $to, $label, $techn)
Rel_($index, $from, $to, $label, $techn, "->>") Rel_($index, $from, $to, $label, $techn, "->>")
increment() increment()
!endfunction !endprocedure
!unquoted function RelIndex_Neighbor($e_index, $from, $to, $label) !unquoted procedure RelIndex_Neighbor($e_index, $from, $to, $label)
Rel_($e_index, $from, $to, $label, "->>") Rel_($e_index, $from, $to, $label, "->>")
!endfunction !endprocedure
!unquoted function RelIndex_Neighbor($e_index, $from, $to, $label, $techn) !unquoted procedure RelIndex_Neighbor($e_index, $from, $to, $label, $techn)
Rel_($e_index, $from, $to, $label, $techn, "->>") Rel_($e_index, $from, $to, $label, $techn, "->>")
!endfunction !endprocedure
!unquoted function Rel_Back_Neighbor($from, $to, $label) !unquoted procedure Rel_Back_Neighbor($from, $to, $label)
Rel_($index, $from, $to, $label, "<<-") Rel_($index, $from, $to, $label, "<<-")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel_Back_Neighbor($from, $to, $label, $techn) !unquoted procedure Rel_Back_Neighbor($from, $to, $label, $techn)
Rel_($index, $from, $to, $label, $techn, "<<-") Rel_($index, $from, $to, $label, $techn, "<<-")
increment() increment()
!endfunction !endprocedure
!unquoted function RelIndex_Back_Neighbor($e_index, $from, $to, $label) !unquoted procedure RelIndex_Back_Neighbor($e_index, $from, $to, $label)
Rel_($e_index, $from, $to, $label, "<<-") Rel_($e_index, $from, $to, $label, "<<-")
!endfunction !endprocedure
!unquoted function RelIndex_Back_Neighbor($e_index, $from, $to, $label, $techn) !unquoted procedure RelIndex_Back_Neighbor($e_index, $from, $to, $label, $techn)
Rel_($e_index, $from, $to, $label, $techn, "<<-") Rel_($e_index, $from, $to, $label, $techn, "<<-")
!endfunction !endprocedure
!unquoted function Rel_D($from, $to, $label) !unquoted procedure Rel_D($from, $to, $label)
Rel_($index, $from, $to, $label, "-DOWN->>") Rel_($index, $from, $to, $label, "-DOWN->>")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel_D($from, $to, $label, $techn) !unquoted procedure Rel_D($from, $to, $label, $techn)
Rel_($index, $from, $to, $label, $techn, "-DOWN->>") Rel_($index, $from, $to, $label, $techn, "-DOWN->>")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel_Down($from, $to, $label) !unquoted procedure Rel_Down($from, $to, $label)
Rel_($index, $from, $to, $label, "-DOWN->>") Rel_($index, $from, $to, $label, "-DOWN->>")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel_Down($from, $to, $label, $techn) !unquoted procedure Rel_Down($from, $to, $label, $techn)
Rel_($index, $from, $to, $label, $techn, "-DOWN->>") Rel_($index, $from, $to, $label, $techn, "-DOWN->>")
increment() increment()
!endfunction !endprocedure
!unquoted function RelIndex_D($e_index, $from, $to, $label) !unquoted procedure RelIndex_D($e_index, $from, $to, $label)
Rel_($e_index, $from, $to, $label, "-DOWN->>") Rel_($e_index, $from, $to, $label, "-DOWN->>")
!endfunction !endprocedure
!unquoted function RelIndex_D($e_index, $from, $to, $label, $techn) !unquoted procedure RelIndex_D($e_index, $from, $to, $label, $techn)
Rel_($e_index, $from, $to, $label, $techn, "-DOWN->>") Rel_($e_index, $from, $to, $label, $techn, "-DOWN->>")
!endfunction !endprocedure
!unquoted function RelIndex_Down($e_index, $from, $to, $label) !unquoted procedure RelIndex_Down($e_index, $from, $to, $label)
Rel_($e_index, $from, $to, $label, "-DOWN->>") Rel_($e_index, $from, $to, $label, "-DOWN->>")
!endfunction !endprocedure
!unquoted function RelIndex_Down($e_index, $from, $to, $label, $techn) !unquoted procedure RelIndex_Down($e_index, $from, $to, $label, $techn)
Rel_($e_index, $from, $to, $label, $techn, "-DOWN->>") Rel_($e_index, $from, $to, $label, $techn, "-DOWN->>")
!endfunction !endprocedure
!unquoted function Rel_U($from, $to, $label) !unquoted procedure Rel_U($from, $to, $label)
Rel_($index, $from, $to, $label, "-UP->>") Rel_($index, $from, $to, $label, "-UP->>")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel_U($from, $to, $label, $techn) !unquoted procedure Rel_U($from, $to, $label, $techn)
Rel_($index, $from, $to, $label, $techn, "-UP->>") Rel_($index, $from, $to, $label, $techn, "-UP->>")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel_Up($from, $to, $label) !unquoted procedure Rel_Up($from, $to, $label)
Rel_($index, $from, $to, $label, "-UP->>") Rel_($index, $from, $to, $label, "-UP->>")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel_Up($from, $to, $label, $techn) !unquoted procedure Rel_Up($from, $to, $label, $techn)
Rel_($index, $from, $to, $label, $techn, "-UP->>") Rel_($index, $from, $to, $label, $techn, "-UP->>")
increment() increment()
!endfunction !endprocedure
!unquoted function RelIndex_U($e_index, $from, $to, $label) !unquoted procedure RelIndex_U($e_index, $from, $to, $label)
Rel_($e_index, $from, $to, $label, "-UP->>") Rel_($e_index, $from, $to, $label, "-UP->>")
!endfunction !endprocedure
!unquoted function RelIndex_U($e_index, $from, $to, $label, $techn) !unquoted procedure RelIndex_U($e_index, $from, $to, $label, $techn)
Rel_($e_index, $from, $to, $label, $techn, "-UP->>") Rel_($e_index, $from, $to, $label, $techn, "-UP->>")
!endfunction !endprocedure
!unquoted function RelIndex_Up($e_index, $from, $to, $label) !unquoted procedure RelIndex_Up($e_index, $from, $to, $label)
Rel_($e_index, $from, $to, $label, "-UP->>") Rel_($e_index, $from, $to, $label, "-UP->>")
!endfunction !endprocedure
!unquoted function RelIndex_Up($e_index, $from, $to, $label, $techn) !unquoted procedure RelIndex_Up($e_index, $from, $to, $label, $techn)
Rel_($e_index, $from, $to, $label, $techn, "-UP->>") Rel_($e_index, $from, $to, $label, $techn, "-UP->>")
!endfunction !endprocedure
!unquoted function Rel_L($from, $to, $label) !unquoted procedure Rel_L($from, $to, $label)
Rel_($index, $from, $to, $label, "-LEFT->>") Rel_($index, $from, $to, $label, "-LEFT->>")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel_L($from, $to, $label, $techn) !unquoted procedure Rel_L($from, $to, $label, $techn)
Rel_($index, $from, $to, $label, $techn, "-LEFT->>") Rel_($index, $from, $to, $label, $techn, "-LEFT->>")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel_Left($from, $to, $label) !unquoted procedure Rel_Left($from, $to, $label)
Rel_($index, $from, $to, $label, "-LEFT->>") Rel_($index, $from, $to, $label, "-LEFT->>")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel_Left($from, $to, $label, $techn) !unquoted procedure Rel_Left($from, $to, $label, $techn)
Rel_($index, $from, $to, $label, $techn, "-LEFT->>") Rel_($index, $from, $to, $label, $techn, "-LEFT->>")
increment() increment()
!endfunction !endprocedure
!unquoted function RelIndex_L($e_index, $from, $to, $label) !unquoted procedure RelIndex_L($e_index, $from, $to, $label)
Rel_($e_index, $from, $to, $label, "-LEFT->>") Rel_($e_index, $from, $to, $label, "-LEFT->>")
!endfunction !endprocedure
!unquoted function RelIndex_L($e_index, $from, $to, $label, $techn) !unquoted procedure RelIndex_L($e_index, $from, $to, $label, $techn)
Rel_($e_index, $from, $to, $label, $techn, "-LEFT->>") Rel_($e_index, $from, $to, $label, $techn, "-LEFT->>")
!endfunction !endprocedure
!unquoted function RelIndex_Left($e_index, $from, $to, $label) !unquoted procedure RelIndex_Left($e_index, $from, $to, $label)
Rel_($e_index, $from, $to, $label, "-LEFT->>") Rel_($e_index, $from, $to, $label, "-LEFT->>")
!endfunction !endprocedure
!unquoted function RelIndex_Left($e_index, $from, $to, $label, $techn) !unquoted procedure RelIndex_Left($e_index, $from, $to, $label, $techn)
Rel_($e_index, $from, $to, $label, $techn, "-LEFT->>") Rel_($e_index, $from, $to, $label, $techn, "-LEFT->>")
!endfunction !endprocedure
!unquoted function Rel_R($from, $to, $label) !unquoted procedure Rel_R($from, $to, $label)
Rel_($index, $from, $to, $label, "-RIGHT->>") Rel_($index, $from, $to, $label, "-RIGHT->>")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel_R($from, $to, $label, $techn) !unquoted procedure Rel_R($from, $to, $label, $techn)
Rel_($index, $from, $to, $label, $techn, "-RIGHT->>") Rel_($index, $from, $to, $label, $techn, "-RIGHT->>")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel_Right($from, $to, $label) !unquoted procedure Rel_Right($from, $to, $label)
Rel_($index, $from, $to, $label, "-RIGHT->>") Rel_($index, $from, $to, $label, "-RIGHT->>")
increment() increment()
!endfunction !endprocedure
!unquoted function Rel_Right($from, $to, $label, $techn) !unquoted procedure Rel_Right($from, $to, $label, $techn)
Rel_($index, $from, $to, $label, $techn, "-RIGHT->>") Rel_($index, $from, $to, $label, $techn, "-RIGHT->>")
increment() increment()
!endfunction !endprocedure
!unquoted function RelIndex_R($e_index, $from, $to, $label) !unquoted procedure RelIndex_R($e_index, $from, $to, $label)
Rel_($e_index, $from, $to, $label, "-RIGHT->>") Rel_($e_index, $from, $to, $label, "-RIGHT->>")
!endfunction !endprocedure
!unquoted function RelIndex_R($e_index, $from, $to, $label, $techn) !unquoted procedure RelIndex_R($e_index, $from, $to, $label, $techn)
Rel_($e_index, $from, $to, $label, $techn, "-RIGHT->>") Rel_($e_index, $from, $to, $label, $techn, "-RIGHT->>")
!endfunction !endprocedure
!unquoted function RelIndex_Right($e_index, $from, $to, $label) !unquoted procedure RelIndex_Right($e_index, $from, $to, $label)
Rel_($e_index, $from, $to, $label, "-RIGHT->>") Rel_($e_index, $from, $to, $label, "-RIGHT->>")
!endfunction !endprocedure
!unquoted function RelIndex_Right($e_index, $from, $to, $label, $techn) !unquoted procedure RelIndex_Right($e_index, $from, $to, $label, $techn)
Rel_($e_index, $from, $to, $label, $techn, "-RIGHT->>") Rel_($e_index, $from, $to, $label, $techn, "-RIGHT->>")
!endfunction !endprocedure

Loading…
Cancel
Save