Access keysTop, Summary, Constructors,
Class propertiesZeroNode
| Kind of class: |
class |
| Inherits from: |
TreeNode
|
| Version: |
20 July 2005 |
| Author: |
Arthur Clemens |
| Classpath: |
playground.classes.data.tree.ZeroNode |
| File last modified: |
Thursday, 13 July 2006, 09:34:01 |
/*
Copyright 2005-2006 by the authors of asapframework, http://asapframework.org
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import playground.classes.data.tree.*;
/**
Class used internally by {@link TreeEnumerator}. A {@code ZeroNode} node indicates the position of the iterator before its start node.
@see TreeEnumerator#getCurrentObject
@author Arthur Clemens
@version 20 July 2005
*/
class playground.classes.data.tree.ZeroNode extends TreeNode {
public static var NAME:String = "ZERO_NODE";
public function ZeroNode () {
// TreeNode must have a name
super(ZeroNode.NAME);
}
}
A
ZeroNode node indicates the position of the iterator before its start node.
Summary
Class properties
Class properties inherited from TreeNode
Instance properties
Instance properties inherited from TreeNode
children,
count,
depth,
firstChild,
mChildren,
mDepth,
mName,
mNamePath,
mParent,
mPosition,
mProperties,
mTree,
name,
namePath,
owner,
parent,
position,
properties
Instance methods
Instance methods inherited from TreeNode
addChild,
createNamePath,
createNewNode,
deleteChildren,
doGetNodeWithPath,
getCount,
getLastNode,
getNode,
getNodes,
getNodeWithAbsolutePath,
getNodeWithRelativePath,
getValueForKey,
kill,
printNodes,
toString
Class properties
NAME
static NAME:String = "ZERO_NODE"
(read,write)