Uses of Interface
eu.xtreemos.xosd.resmng.data.IConditionTreeNode

Packages that use IConditionTreeNode
eu.xtreemos.xosd.resmng   
eu.xtreemos.xosd.resmng.data   
eu.xtreemos.xosd.utilities.resmng   
 

Uses of IConditionTreeNode in eu.xtreemos.xosd.resmng
 

Methods in eu.xtreemos.xosd.resmng with parameters of type IConditionTreeNode
protected  java.util.ArrayList<ResourceDescriptorScorekeeper> ResMng.matchAndScoreResources(java.util.ArrayList<ResourceDescriptorRecord> resources, IConditionTreeNode conditionTreeRoot)
           
protected  java.util.ArrayList<ResourceDescriptorRecord> ResMng.matchResources(java.util.ArrayList<ResourceDescriptorRecord> resources, IConditionTreeNode conditionTreeRoot, ResMngStorage storage)
          Traverses the condition tree for each element in the resource descriptor collection and selects those that match the query expressed in the condition tree.
 

Uses of IConditionTreeNode in eu.xtreemos.xosd.resmng.data
 

Classes in eu.xtreemos.xosd.resmng.data that implement IConditionTreeNode
 class ConditionTreeCondition
          A class that implements the comparison of the end values that represent a resource against the conditions passed as the parameter.
 class ConditionTreeOperator
          A class for the condition tree node that represents an operator.
 

Fields in eu.xtreemos.xosd.resmng.data with type parameters of type IConditionTreeNode
protected  java.util.ArrayList<IConditionTreeNode> ConditionTreeOperator.children
          The nodes that descend from this node in the condition tree.
 

Methods in eu.xtreemos.xosd.resmng.data that return types with arguments of type IConditionTreeNode
 java.util.ArrayList<IConditionTreeNode> ConditionTreeOperator.getChildren()
          Retrieves the collection of nodes that descend from this node in the condition tree.
 

Method parameters in eu.xtreemos.xosd.resmng.data with type arguments of type IConditionTreeNode
 void ConditionTreeOperator.setChildren(java.util.ArrayList<IConditionTreeNode> children)
          Assigns a new collection of nodes to descend from this node in the condition tree.
 

Uses of IConditionTreeNode in eu.xtreemos.xosd.utilities.resmng
 

Methods in eu.xtreemos.xosd.utilities.resmng that return IConditionTreeNode
static IConditionTreeNode ConditionTreeBuilder.buildTree(ParsedCommand xconsoleCommand)
           
static IConditionTreeNode ConditionTreeBuilder.buildTreeFromJSDL(java.util.Hashtable<java.lang.String,java.lang.Object> jsdl)
          Builds a condition tree from a structure representing an XML formatted according to the JSDL schema.
private static IConditionTreeNode ConditionTreeBuilder.getExactSubtree(java.lang.Object exact, int nodeAttribute)
          Returns a subtree that checks whether the value matches the condition represented by Exact_type structure.
protected static IConditionTreeNode ConditionTreeBuilder.getMatchInterval(java.lang.String refValues, int nodeAttribute)
           
protected static IConditionTreeNode ConditionTreeBuilder.getMatchRangeConditionNode(java.util.ArrayList list, int nodeAttribute)
          Generate a condition subtree representing the range structure of a JSDL.
protected static IConditionTreeNode ConditionTreeBuilder.getMatchStringNode(java.util.ArrayList list, int nodeAttribute)
           
private static IConditionTreeNode ConditionTreeBuilder.getRangeSubtree(java.lang.Object range, int nodeAttribute)
          Returns a subtree that checks whether the value is within one of the intervals provided in the Range_type JSDL structure.
 

Methods in eu.xtreemos.xosd.utilities.resmng with parameters of type IConditionTreeNode
static void ConditionTreeBuilder.dumpConditionTree(IConditionTreeNode node)
          A helper method for dumping a tree starting at the provided node to stdout.
protected static void ConditionTreeBuilder.dumpConditionTree(IConditionTreeNode node, int level)
          A helper method for dumping a subtree at a certain depth level.