Uses of Class
org.basex.data.Nodes

Packages that use Nodes
org.basex.core This package contains the core classes. 
org.basex.data Contains BaseX data types, including the internal table representation in the Data class. 
org.basex.gui.view Contains the views and the observer framework. 
org.basex.query Provides classes for querying the data. 
org.basex.query.xpath Includes an implementation of XPath 1.0. 
org.basex.query.xquery Includes an implementation of XQuery 1.0. 
 

Uses of Nodes in org.basex.core
 

Methods in org.basex.core that return Nodes
 Nodes Context.copied()
          Returns the copied context set.
 Nodes Context.current()
          Returns the current context set.
 Nodes Context.marked()
          Returns the marked context set.
 

Methods in org.basex.core with parameters of type Nodes
 void Context.copy(Nodes copy)
          Sets the current node set as copy.
 void Context.current(Nodes curr)
          Sets the current context set.
 void Context.marked(Nodes mark)
          Sets the marked context set.
 

Uses of Nodes in org.basex.data
 

Methods in org.basex.data that return Nodes
 Nodes Nodes.copy()
          Returns a copy of the node set.
 

Uses of Nodes in org.basex.gui.view
 

Fields in org.basex.gui.view declared as Nodes
static Nodes[] View.MARKHIST
          Zoomed rectangle history.
static Nodes[] View.NODEHIST
          Zoomed rectangle history.
 

Methods in org.basex.gui.view with parameters of type Nodes
static void View.notifyContext(Nodes nodes, boolean quick, View vw)
          Notifies all views of a context change.
static void View.notifyMark(Nodes mark, View vw)
          Notifies all views of a selection change.
static void View.notifySwitch(Nodes nodes)
          Notifies all views of a context switch without storing nodes in the history.
 

Uses of Nodes in org.basex.query
 

Methods in org.basex.query that return Nodes
 Nodes QueryProcessor.queryNodes(Nodes nodes)
          Parses the specified query and returns the result nodes.
 

Methods in org.basex.query with parameters of type Nodes
 void QueryProcessor.compile(Nodes nodes)
          Compiles the query.
 Result QueryProcessor.query(Nodes n)
          Parses the specified query and returns the result.
 Nodes QueryProcessor.queryNodes(Nodes nodes)
          Parses the specified query and returns the result nodes.
 

Uses of Nodes in org.basex.query.xpath
 

Methods in org.basex.query.xpath with parameters of type Nodes
 XPContext XPContext.compile(Nodes n)
           
 Result XPContext.eval(Nodes nodes)
           
 

Uses of Nodes in org.basex.query.xquery
 

Methods in org.basex.query.xquery with parameters of type Nodes
 XQContext XQContext.compile(Nodes nodes)
           
 XQResult XQContext.eval(Nodes nodes)