before...

call a simple tag

Another simple tag aTag, which locates in the same directory as this template: first define something in a Java code block. ` // java.util.* is automatically imported ` List strings = new ArrayList(){{add("you");add("me");add("them");}}; `tag aTag strings note: the picka tag is defined in the japidviews/_tags directory `tag picka("a", "b" + "c") | String r the tag chosed: $r

and we can can call a tag recurive?

`tag SampleTag(r) `

Or using the full path of the tag

`tag japidviews/templates/aTag(strings)

You can use "." instead of "/" in the path:

`tag japidviews.templates.aTag strings