Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
com.maddyhome.idea.vim.key.Node

Uses of Node in com.maddyhome.idea.vim.key
 

Classes in com.maddyhome.idea.vim.key that implement Node
 class ArgumentNode
          This represents a command argument node in the key/action tree.
 class BranchNode
          This node of the key/action tree will contain one or more child nodes.
 class CommandNode
          This node represents a command in the key/action tree
 class ParentNode
          This abstract node is used as a base for any node that can contain child nodes
 class RootNode
          Represents the root of the key/action tree
 

Methods in com.maddyhome.idea.vim.key that return Node
 Node ParentNode.getChild(java.lang.Object key)
          Returns the child node associated with the supplied key.
private  Node KeyParser.addNode(ParentNode base, java.lang.String actName, int cmdType, int cmdFlags, javax.swing.KeyStroke key, int argType, boolean last)
          Adds a new node to the tree
 Node BranchNode.getChild(java.lang.Object key)
          Returns the child node associated with the supplied key.
 Node BranchNode.getArgumentNode()
           
 

Methods in com.maddyhome.idea.vim.key with parameters of type Node
 void ParentNode.addChild(Node child, java.lang.Object key)
          This adds a child node keyed by the supplied key