Skip to content

Commit

Permalink
add object constructor tag bases meta outlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Jun 10, 2020
1 parent faeb2ce commit a0c23f2
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class ElementTag implements ObjectTag {
// For example: <element[This_is_a_test].to_uppercase>
// will result in the value 'THIS_IS_A_TEST'.
//
// Note that while other objects often return their object identifier (p@, li@, e@, etc.), elements do not.
// Note that while other objects often return their object identifier (p@, li@, e@, etc.), elements usually do not (except special type-validation circumstances).
// They will, however, recognize the object notation "el@" if it is used.
//
// -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public DurationTagBase() {
// @returns DurationTag
// @description
// Returns a duration object constructed from the input value.
// Refer to <@link language DurationTag objects>.
// -->
TagManager.registerTagHandler(new TagRunnable.RootForm() {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public ElementTagBase() {
// @returns ElementTag
// @description
// Returns an element constructed from the input value.
// Refer to <@link language ElementTag objects>.
// -->
TagManager.registerTagHandler(new TagRunnable.RootForm() {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public MapTagBase() {
// @returns MapTag
// @description
// Returns a map object constructed from the input value.
// Refer to <@link language MapTag objects>.
// -->
TagManager.registerTagHandler(new TagRunnable.RootForm() {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public QueueTagBase() {
// @returns QueueTag
// @description
// Returns a queue object constructed from the input value.
// Refer to <@link language QueueTag objects>.
// If no input is given, returns the current queue.
// -->
TagManager.registerTagHandler(new TagRunnable.RootForm() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public ScriptTagBase() {
// @returns ScriptTag
// @description
// Returns a script object constructed from the input value.
// Refer to <@link language ScriptTag objects>.
// -->
TagManager.registerTagHandler(new TagRunnable.RootForm() {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public TimeTagBase() {
// @returns TimeTag
// @description
// Returns a time object constructed from the input value.
// Refer to <@link language TimeTag objects>.
// -->
TagManager.registerTagHandler(new TagRunnable.RootForm() {
@Override
Expand Down

0 comments on commit a0c23f2

Please sign in to comment.