Returns true if
aTreePath
is a
descendant of this
TreePath. A TreePath P1 is a descendant of a TreePath P2
if P1 contains all of the components that make up
P2's path.
For example, if this object has the path [a, b],
and
aTreePath
has the path [a, b, c],
then
aTreePath
is a descendant of this object.
However, if
aTreePath
has the path [a],
then it is not a descendant of this object. By this definition
a TreePath is always considered a descendant of itself. That is,
aTreePath.isDescendant(aTreePath)
returns true.
Returns:
true if
aTreePath
is a descendant of this path