new ArchTraverseContext()
The Architect Scripting class that is used to provide context information to the
callback function specified in the ArchBaseCoreObject#traverse method.
Note: Do not attempt to create instances of this class directly. They will be created
automatically as needed by Architect Scripting.
Extends
Members
-
static, readonly displayTypeName :string
-
Returns the display type name string 'ArchTraverseContext'.
-
readonly displayTypeName :string
-
Returns a display string that reflects the type for this Architect Scripting object.
- Overrides:
-
readonly hierarchy :Array.<ArchTraverseHierarchyItem>
-
Returns the current traversal hierarchy for the traverse callback as an array of
ArchTraverseHierarchyIteminstances. For example, if you calledtraverseon ataskand the traversal code was going through the actions available off of the actions property and it was on the second action, you would see one hierarchical item in this array that hierarchical item hold a pointer to the task in thearchBaseObjectproperty, theproperty namewould be 'actions' and theindexproperty value would be 1. -
readonly hierarchyStr :string
-
Returns the
ArchTraverseHierarchyItem#hierarchyStrstring value from the last item in the hierarchy item array. If there are no items in the hierarchy array, this returns the string ''. This string is meant to be more informational than anything else. Instead of trying to parse the contents of the hierarchy string, we recommend using the ArchTraverseContext#hierarchyarray itself since it'll have the information that was used to build up this string as well as actual Architect Scripting object references as well. -
readonly isArchTraverseContext :boolean
-
Returns true indicating that this is an ArchTraverseContext instance.
-
readonly logStr :string
-
A string suitable for logging that contains information about this definition.
- Overrides:
-
readonly logStrTypeOnly :string
-
This is a string suitable for logging information about this object where it's just the object's type. This is normally used when logging errors that occur in constructor parameter checking because the scripting object isn't set up and the normal logging str contents wouldn't be set up.
- Inherited From:
Methods
-
isFilterMatch(archFilterObject) → {boolean}
-
Returns whether or not this Architect Scripting object is a match for the supplied ArchFilterObject instance.
Parameters:
Name Type Description archFilterObjectArchFilterObject the object filter to use to determine if it's a match.
Returns:
boolean- Inherited From:
-
logError(errorStr)
-
Logs an error to the logging service with a log header from this object's
logStrproperty value whenArchLogging#logErrorsis true.Parameters:
Name Type Description errorStrstring the error string to log.
- Inherited From:
-
logErrorAndThrow(errorStr)
-
Logs an error to the logging service with a log header from this object's
logStrproperty value whenArchLogging#logErrorsis true and then throws the string in the errorStr parameter.Parameters:
Name Type Description errorStrstring the error string to log. This should be a non-blank string.
Throws:
- Throws the submitted error string.
- Inherited From:
-
logNote(noteStr)
-
Logs a note to the logging service with a log header from this object's
logStrproperty value whenArchLogging#logNotesis true.Parameters:
Name Type Description noteStrstring the note string to log. This should be a non-blank string.
- Inherited From:
-
logNoteVerbose(noteStr)
-
Logs a note to the logging service with a log header from this object's
logStrproperty value whenArchLogging#logNotesVerboseis true.Parameters:
Name Type Description noteStrstring the note string to log. This should be a non-blank string.
- Inherited From:
-
logWarning(warningStr)
-
Logs a warning to the logging service with a log header from this object's
logStrproperty value whenArchLogging#logWarningsis true.Parameters:
Name Type Description warningStrstring the warning string to log. This should be a non-blank string.
- Inherited From: