public interface Node
| 修飾子とタイプ | メソッドと説明 |
|---|---|
void |
accept(CommandContext ctx)
Accept the context of command.
|
void |
addChild(Node node)
Add the child node.
|
Node |
getChild(int index)
Get the child node by the index.
|
int |
getChildSize()
Get the size of children.
|
int getChildSize()
Node getChild(int index)
index - The value of indexvoid addChild(Node node)
node - The node instance for the added child. (NotNull)void accept(CommandContext ctx)
ctx - The instance of command context. (NotNull)Copyright © 2014–2015 The DBFlute Project. All rights reserved.