|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use NodeList | |
|---|---|
| org.mmbase.bridge | The main interface to MMBase, also known as `MMCI' (MMBase Cloud Interface). |
| org.mmbase.bridge.implementation | This package provides the basic implementations for the interfaces of org.mmbase.bridge. |
| org.mmbase.bridge.jsp.taglib | The MMBase taglib implementation. |
| org.mmbase.bridge.jsp.taglib.tree | |
| org.mmbase.bridge.mock | This package provides a completely 'virtual' implementation of the bridge. |
| org.mmbase.bridge.util | This package contains several bridge related classes which can be used independently of the rest of MMBase. |
| org.mmbase.module | The modules used to load MMBase and optional MMBase functionality. |
| org.mmbase.module.builders | The MMBase standard and optional builders. |
| org.mmbase.module.lucene | |
| org.mmbase.notifications | |
| org.mmbase.richtext.processors.xml | |
| org.mmbase.util | |
| org.mmbase.util.functions |
The function framework is all about the creation of Function instances, from which
then, subsequently, function values can be acquired. |
| org.mmbase.versioning | |
| Uses of NodeList in org.mmbase.bridge |
|---|
| Methods in org.mmbase.bridge that return NodeList | |
|---|---|
NodeList |
NodeManager.createNodeList()
Returns a new, empty node list for this nodemanager |
NodeList |
CloudContext.createNodeList()
Returns a new, empty node list. |
NodeList |
Cloud.createNodeList()
Returns a new, empty node list for this cloud |
NodeList |
Query.getList()
Executes the query and returns the resulting node list. |
NodeList |
NodeManager.getList(NodeQuery query)
Executes a query and returns the result as nodes of this NodeManager (or of extensions) |
NodeList |
Cloud.getList(Query query)
Executes a query and returns the result as a Cluster Node List (also if the query is a NodeQuery). |
NodeList |
NodeManager.getList(String command,
Map parameters)
Retrieve info (as a list of virtual nodes) from a node manager based on a command string. |
NodeList |
Module.getList(String command,
Map<String,?> parameters)
Retrieve info (as a list of virtual nodes) from a module based on a command string. |
NodeList |
Module.getList(String command,
Map<String,?> parameters,
javax.servlet.ServletRequest req,
javax.servlet.ServletResponse resp)
Retrieve info from a module based on a command string Similar to the LIST command in SCAN. |
NodeList |
NodeManager.getList(String command,
Map parameters,
javax.servlet.ServletRequest req,
javax.servlet.ServletResponse resp)
Retrieve info from a node manager based on a command string Similar to the LIST command in SCAN. |
NodeList |
NodeManager.getList(String constraints,
String orderby,
String directions)
Returns a list of nodes belonging to this node manager. |
NodeList |
Cloud.getList(String startNodes,
String nodePath,
String fields,
String constraints,
String orderby,
String directions,
String searchDir,
boolean distinct)
Returns a list of virtual nodes that are composed by fields of other nodes. |
NodeList |
Transaction.getNodes()
|
NodeList |
Node.getRelatedNodes()
Returns all related nodes. |
NodeList |
Node.getRelatedNodes(NodeManager nodeManager)
Returns all related nodes that have a specific node manager. |
NodeList |
Node.getRelatedNodes(NodeManager nodeManager,
String role,
String searchDir)
Returns all related nodes that have a specific node manager and role. |
NodeList |
Node.getRelatedNodes(String nodeManager)
Returns all related nodes that have a specific node manager. |
NodeList |
Node.getRelatedNodes(String nodeManager,
String role,
String searchDir)
Returns all related nodes that have a specific node manager and role. |
NodeList |
NodeList.subNodeList(int fromIndex,
int toIndex)
Returns a sublist of this list. |
| Uses of NodeList in org.mmbase.bridge.implementation |
|---|
| Classes in org.mmbase.bridge.implementation that implement NodeList | |
|---|---|
class |
BasicNodeList
A list of nodes |
class |
SimpleNodeList
A list of nodes |
| Methods in org.mmbase.bridge.implementation that return NodeList | |
|---|---|
NodeList |
BasicNodeManager.createNodeList()
|
NodeList |
BasicCloudContext.createNodeList()
|
NodeList |
BasicCloud.createNodeList()
|
protected NodeList |
BasicCloud.getLastStepList(Query query)
Based on multi-level query. |
NodeList |
BasicQuery.getList()
|
NodeList |
BasicNodeQuery.getList()
|
NodeList |
BasicNodeManager.getList(NodeQuery query)
|
NodeList |
BasicCloud.getList(Query query)
|
NodeList |
BasicNodeManager.getList(String command,
Map parameters)
|
NodeList |
ModuleHandler.getList(String command,
Map<String,?> parameters)
|
NodeList |
ModuleHandler.getList(String command,
Map<String,?> parameters,
javax.servlet.ServletRequest req,
javax.servlet.ServletResponse resp)
|
NodeList |
BasicNodeManager.getList(String command,
Map parameters,
javax.servlet.ServletRequest req,
javax.servlet.ServletResponse resp)
|
NodeList |
BasicNodeManager.getList(String constraints,
String sorted,
String directions)
|
NodeList |
BasicCloud.getList(String startNodes,
String nodePath,
String fields,
String constraints,
String orderby,
String directions,
String searchDir,
boolean distinct)
|
NodeList |
BasicTransaction.getNodes()
|
protected NodeList |
BasicNode.getRelatedNodes(NodeManager otherManager,
String role)
Get related nodes for this node |
NodeList |
BasicNode.getRelatedNodes(NodeManager otherManager,
String role,
String searchDir)
|
protected NodeList |
BasicCloud.getResultNodeList(Query query)
Aggregating query result. |
protected NodeList |
BasicCloud.getSecureList(Query query)
Result with Cluster Nodes (checked security) |
NodeList |
BasicNodeList.subNodeList(int fromIndex,
int toIndex)
|
NodeList |
SimpleNodeList.subNodeList(int fromIndex,
int toIndex)
|
| Uses of NodeList in org.mmbase.bridge.jsp.taglib |
|---|
| Methods in org.mmbase.bridge.jsp.taglib that return NodeList | |
|---|---|
protected NodeList |
AbstractNodeListTag.getNodeList(Query query)
|
| Uses of NodeList in org.mmbase.bridge.jsp.taglib.tree |
|---|
| Constructors in org.mmbase.bridge.jsp.taglib.tree with parameters of type NodeList | |
|---|---|
TreeTag.BranchLoopStatus(Node c,
NodeList s)
|
|
| Uses of NodeList in org.mmbase.bridge.mock |
|---|
| Methods in org.mmbase.bridge.mock that return NodeList | |
|---|---|
NodeList |
MockCloud.getList(Query query)
|
NodeList |
MockTransaction.getNodes()
|
| Uses of NodeList in org.mmbase.bridge.util |
|---|
| Classes in org.mmbase.bridge.util that implement NodeList | |
|---|---|
(package private) static class |
BridgeCollections.EmptyNodeList
|
(package private) static class |
BridgeCollections.UnmodifiableNodeList
|
class |
CollectionNodeList
A (fixed-size) list of nodes, based on a Collection of Nodes. |
class |
GrowingTreeList
This version of TreeList is automaticly growing with the same 'branch' every time when that is possible. |
class |
TreeList
Queries a Tree from MMBase. |
| Fields in org.mmbase.bridge.util declared as NodeList | |
|---|---|
static NodeList |
BridgeCollections.EMPTY_NODELIST
|
(package private) NodeList |
TreeList.Branch.leafResult
|
(package private) NodeList |
TreeList.Branch.result
|
| Methods in org.mmbase.bridge.util that return NodeList | |
|---|---|
static NodeList |
Queries.addToResult(Query q,
Node n)
Explores a query object, and creates a certain new relation object, which would make the given node appear in the query's result. |
NodeList |
AbstractNodeManager.createNodeList()
|
NodeList |
AbstractCloudContext.createNodeList()
|
NodeList |
AbstractCloud.createNodeList()
|
static NodeList |
SearchUtil.findNodeList(Cloud cloud,
String managerName)
Search for nodes which contain a field value. |
static NodeList |
SearchUtil.findNodeList(Cloud cloud,
String managerName,
String fieldname,
Object value)
Search for nodes which contain a field value. |
static NodeList |
SearchUtil.findNodeList(Cloud cloud,
String managerName,
String fieldname,
Object value,
String sortName)
Search for nodes which contain a field value. |
static NodeList |
SearchUtil.findNodeList(Cloud cloud,
String managerName,
String fieldname,
Object value,
String sortName,
String sortDirection)
Retrieve nodes which contain a field value. |
static NodeList |
SearchUtil.findOrderedNodeList(Cloud cloud,
String managerName,
String sortName)
Retrieve nodes which are sorted on the field name |
static NodeList |
SearchUtil.findOrderedNodeList(Cloud cloud,
String managerName,
String sortName,
String sortDirection)
Retrieve nodes which are sorted on the field name |
static NodeList |
SearchUtil.findRelatedNodeList(Node parent,
String managerName,
String role)
Search for nodes which are related to the parent node. |
static NodeList |
SearchUtil.findRelatedNodeList(Node parent,
String managerName,
String role,
String fieldname,
Object value)
Search for nodes which are related to the parent node and contain a field value. |
static NodeList |
SearchUtil.findRelatedNodeList(Node parent,
String managerName,
String role,
String fieldname,
Object value,
String sortName)
Search for nodes which are related to the parent node and contain a field value. |
static NodeList |
SearchUtil.findRelatedNodeList(Node parent,
String managerName,
String role,
String fieldname,
Object value,
String sortName,
String sortDirection)
Search for nodes which are related to the parent node and contain a field value. |
static NodeList |
SearchUtil.findRelatedNodeList(Node parent,
String managerName,
String role,
String fieldname,
Object value,
String sortName,
String sortDirection,
String searchdir)
Search for nodes which are related to the parent node and contain a field value. |
static NodeList |
SearchUtil.findRelatedOrderedNodeList(Node parent,
String managerName,
String role,
String sortName)
Search for nodes which are related to the parent node and contain a field value. |
static NodeList |
SearchUtil.findRelatedOrderedNodeList(Node parent,
String managerName,
String role,
String sortName,
String sortDirection)
Search for nodes which are related to the parent node and contain a field value. |
protected NodeList |
TreeList.getLeafList(int queryNumber)
Executes one query as a 'leaf' query. |
protected NodeList |
GrowingTreeList.getLeafList(int queryNumber)
|
NodeList |
AbstractQueryWrapper.getList()
|
protected NodeList |
TreeList.getList(int queryNumber)
Executes one query if that did not happen yet, and stores the result in the 'results' List |
protected NodeList |
GrowingTreeList.getList(int queryNumber)
|
NodeList |
AbstractNodeManager.getList(NodeQuery query)
|
NodeList |
AbstractCloud.getList(Query query)
|
NodeList |
AbstractNodeManager.getList(String command,
Map parameters)
|
NodeList |
AbstractNodeManager.getList(String command,
Map parameters,
javax.servlet.ServletRequest req,
javax.servlet.ServletResponse resp)
|
NodeList |
AbstractNodeManager.getList(String constraints,
String sorted,
String directions)
|
NodeList |
AbstractCloud.getList(String startNodes,
String nodePath,
String fields,
String constraints,
String orderby,
String directions,
String searchDir,
boolean distinct)
|
NodeList |
NodeWrapper.getRelatedNodes()
|
NodeList |
AbstractNode.getRelatedNodes()
|
NodeList |
NodeWrapper.getRelatedNodes(NodeManager nodeManager)
|
NodeList |
AbstractNode.getRelatedNodes(NodeManager nodeManager)
|
NodeList |
NodeWrapper.getRelatedNodes(NodeManager nodeManager,
String role,
String searchDir)
|
NodeList |
MapNode.getRelatedNodes(NodeManager nodeManager,
String role,
String searchDir)
|
NodeList |
AbstractNode.getRelatedNodes(NodeManager nodeManager,
String role,
String searchDir)
|
static NodeList |
Queries.getRelatedNodes(Node node,
NodeManager otherNodeManager,
String role,
String direction,
String relationFields,
String sortOrders)
Queries a list of cluster nodes, using a NodeQuery (so al fields of
one step are available), plus some fields of the relation step. |
NodeList |
NodeWrapper.getRelatedNodes(String nodeManager)
|
NodeList |
AbstractNode.getRelatedNodes(String type)
|
NodeList |
NodeWrapper.getRelatedNodes(String nodeManager,
String role,
String searchDir)
|
NodeList |
AbstractNode.getRelatedNodes(String type,
String role,
String searchDir)
|
static NodeList |
Queries.getRelations(Query q,
Node n)
Explores a query object, returns the relations the node has within the query. |
NodeList |
TreeList.TreeItr.getSiblings()
|
NodeList |
TreeIterator.getSiblings()
Returns all nodes with the same parent as the most recently return Node (include that node itself). |
static NodeList |
Queries.removeFromResult(Query q,
Node n)
Deletes the relations with a node from a queries resulting relations list. |
NodeList |
TreeList.subList(int start,
int end)
|
NodeList |
TreeList.subNodeList(int start,
int end)
|
NodeList |
CollectionNodeList.subNodeList(int fromIndex,
int toIndex)
|
NodeList |
BridgeCollections.UnmodifiableNodeList.subNodeList(int fromIndex,
int toIndex)
|
NodeList |
BridgeCollections.EmptyNodeList.subNodeList(int fromIndex,
int toIndex)
|
static NodeList |
BridgeCollections.unmodifiableNodeList(NodeList nodeList)
Makes a NodeList unmodifiable. |
| Methods in org.mmbase.bridge.util with parameters of type NodeList | |
|---|---|
static void |
SearchUtil.addNodesConstraints(Query query,
Field field,
NodeList nodes)
Add a constraint to the query which limits the nodes in the result based on the number |
static SortedSet<Integer> |
SearchUtil.createNodesConstraints(NodeList nodes)
Create a set with the node numbers of the list of nodes |
static NodeQuery |
SearchUtil.createRelatedNodeListQuery(NodeList parentNodes,
String managerName,
String role)
Create a query for a list of nodes which are related to the parent node and contain a field value. |
static NodeQuery |
SearchUtil.createRelatedNodeListQuery(NodeList parentNodes,
String managerName,
String role,
String searchdir)
Create a query for a list of nodes which are related to the parent node and contain a field value. |
static NodeList |
BridgeCollections.unmodifiableNodeList(NodeList nodeList)
Makes a NodeList unmodifiable. |
| Constructors in org.mmbase.bridge.util with parameters of type NodeList | |
|---|---|
BridgeCollections.UnmodifiableNodeList(NodeList nodeList)
|
|
| Uses of NodeList in org.mmbase.module |
|---|
| Methods in org.mmbase.module that return NodeList | |
|---|---|
NodeList |
ProcessorModule.GetNodeListFunction.getFunctionValue(Parameters arguments)
|
| Uses of NodeList in org.mmbase.module.builders |
|---|
| Methods in org.mmbase.module.builders that return NodeList | |
|---|---|
protected NodeList |
Properties.getPropertyNodes(Node node)
|
| Uses of NodeList in org.mmbase.module.lucene |
|---|
| Fields in org.mmbase.module.lucene with type parameters of type NodeList | |
|---|---|
protected Function<NodeList> |
Lucene.searchFunction
This function starts a search fro a given string. |
| Methods in org.mmbase.module.lucene that return NodeList | |
|---|---|
NodeList |
Searcher.search(Cloud cloud,
String value)
|
NodeList |
Searcher.search(Cloud cloud,
String value,
Filter filter,
Query extraQuery,
int offset,
int max)
|
NodeList |
Searcher.search(Cloud cloud,
String value,
Filter filter,
Sort sort,
Analyzer analyzer,
Query extraQuery,
String[] fields,
int offset,
int max)
|
NodeList |
Searcher.search(Cloud cloud,
String value,
int offset,
int max)
|
NodeList |
Searcher.search(Cloud cloud,
String value,
Query extraQuery,
int offset,
int max)
|
NodeList |
Searcher.search(Cloud cloud,
String value,
String[] sortFields,
Query extraQuery,
int offset,
int max)
|
| Uses of NodeList in org.mmbase.notifications |
|---|
| Methods in org.mmbase.notifications that return NodeList | |
|---|---|
NodeList |
Notifyable.getNotifications()
|
| Uses of NodeList in org.mmbase.richtext.processors.xml |
|---|
| Methods in org.mmbase.richtext.processors.xml that return NodeList | |
|---|---|
static NodeList |
Util.get(Cloud cloud,
NodeList list,
String field,
String value)
Just searches the nodes in a NodeList for which a certain field has a certain value. |
static NodeList |
Util.getRelatedNodes(Node editedNode,
NodeManager dest)
|
| Methods in org.mmbase.richtext.processors.xml with parameters of type NodeList | |
|---|---|
protected void |
Kupu.cleanDanglingIdRels(NodeList clusterNodes,
List<Map.Entry<String,Node>> usedNodes,
String type)
At the end of stage 2 of parse all relations are removed which are not used any more, using this function. |
(package private) Node |
Wiki.findById(Element a,
NodeList links,
String fieldName,
Set<String> usedIds)
Searches in the existsing relations for a relation with the given id |
static NodeList |
Util.get(Cloud cloud,
NodeList list,
String field,
String value)
Just searches the nodes in a NodeList for which a certain field has a certain value. |
| Uses of NodeList in org.mmbase.util |
|---|
| Classes in org.mmbase.util that implement NodeList | |
|---|---|
static class |
BridgeCaster.NodeListWrapper
|
| Constructors in org.mmbase.util with parameters of type NodeList | |
|---|---|
BridgeCaster.NodeListWrapper(NodeList list,
CharTransformer e)
|
|
| Uses of NodeList in org.mmbase.util.functions |
|---|
| Fields in org.mmbase.util.functions with type parameters of type NodeList | |
|---|---|
protected Function<NodeList> |
ExampleBuilder.listLatestFunction
Implementation of 'builder function', which can be compared with a static method in java. |
static ReturnType<NodeList> |
ReturnType.NODELIST
The return type of a function that returns a NodeList. |
| Methods in org.mmbase.util.functions that return NodeList | |
|---|---|
NodeList |
ExampleBean.nodeListFunction1()
|
| Uses of NodeList in org.mmbase.versioning |
|---|
| Methods in org.mmbase.versioning that return NodeList | |
|---|---|
(package private) static NodeList |
IdRelVersioningCommitProcessor.getIdRels(Node node)
|
static NodeList |
VersioningCommitProcessor.getVersions(Node node)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||