Uses of Interface
it.unitn.disi.smatch.data.INode

Packages that use INode
it.unitn.disi.smatch.classifiers   
it.unitn.disi.smatch.data   
it.unitn.disi.smatch.data.mappings   
it.unitn.disi.smatch.filters   
it.unitn.disi.smatch.loaders   
it.unitn.disi.smatch.matchers.structure.node   
it.unitn.disi.smatch.matchers.structure.tree   
it.unitn.disi.smatch.renderers.context   
it.unitn.disi.smatch.renderers.mapping   
 

Uses of INode in it.unitn.disi.smatch.classifiers
 

Methods in it.unitn.disi.smatch.classifiers with parameters of type INode
 java.lang.String DefaultClassifier.buildCNode(INode in)
          Constructs concept@node for a node.
 void CNFClassifier.buildCNode(INode in)
          constructs cNode for the concept
 java.lang.String CNFClassifier.toCNF(INode in, java.lang.String formula)
           
 

Uses of INode in it.unitn.disi.smatch.data
 

Classes in it.unitn.disi.smatch.data that implement INode
 class Node
          This class represent a node in the hierarchy.
 

Methods in it.unitn.disi.smatch.data that return INode
static INode Node.getInstance()
           
static INode Node.getInstance(java.lang.String nodeName, java.lang.String nodeId)
           
 INode IContext.getNode(java.lang.String conceptId)
          This method can be used to find a concept in the hierarchy using its Concept Id
 INode Context.getNode(java.lang.String conceptId)
          This method can be used to find a concept in the hierarchy using its Concept Id
 INode Node.getParent()
           
 INode INode.getParent()
          Returns interface to the parent node.
 INode IContext.getRoot()
          returns the root of the context
 INode Context.getRoot()
           
 

Methods in it.unitn.disi.smatch.data that return types with arguments of type INode
 java.util.Vector<INode> IContext.getAllNodes()
          Returns all the nodes in the tree The returned list is ordered as in depth first traversal
 java.util.Vector<INode> Context.getAllNodes()
          The returned list is ordered as in depth first traversal
 java.util.Vector<INode> Node.getAncestors()
          The returned list is orderd from the father node to the root.
 java.util.Vector<INode> INode.getAncestors()
          Returns all ancestors of the given node.
 java.util.Vector<INode> Node.getChildren()
           
 java.util.Vector<INode> INode.getChildren()
          Returns children of the node.
 java.util.Vector<INode> Node.getDescendants()
           
 java.util.Vector<INode> INode.getDescendants()
          Returns all descendants of the node.
 

Methods in it.unitn.disi.smatch.data with parameters of type INode
 void Node.addChild(INode child)
           
 void INode.addChild(INode child)
          Adds child to the given node.
 void Node.removeChild(INode child)
           
 void INode.removeChild(INode child)
          Removes child of the node.
 void Node.setParent(INode parent)
           
 void INodeData.setParent(INode parent)
           
 void IContext.setRoot(INode root)
          Sets a new root for the context
 void Context.setRoot(INode root)
           
 

Uses of INode in it.unitn.disi.smatch.data.mappings
 

Fields in it.unitn.disi.smatch.data.mappings declared as INode
protected  INode MappingNodeElement.sourceNode
           
protected  INode MappingNodeElement.targetNode
           
 

Methods in it.unitn.disi.smatch.data.mappings that return INode
 INode MappingNodeElement.getSourceNode()
           
 INode MappingElement.getSourceNode()
           
 INode IMappingElement.getSourceNode()
           
 INode MappingNodeElement.getTargetNode()
           
 INode MappingElement.getTargetNode()
           
 INode IMappingElement.getTargetNode()
           
 

Constructors in it.unitn.disi.smatch.data.mappings with parameters of type INode
MappingNodeElement(INode sourceNode, INode targetNode, char relation)
           
 

Uses of INode in it.unitn.disi.smatch.filters
 

Methods in it.unitn.disi.smatch.filters with parameters of type INode
static boolean RedundantGeneratorFilter.findRelation(char relation, INode sourceNode, INode targetNode)
           
 boolean RedundantFilter.findRelation(char relation, INode sourceNode, INode targetNode)
           
static boolean RedundantGeneratorFilter.findRelation(char relation, INode sourceNode, java.util.Vector<INode> targetNodes)
           
 boolean RedundantFilter.findRelation(char relation, INode sourceNode, java.util.Vector<INode> targetNodes)
           
static boolean RedundantGeneratorFilter.findRelation(char relation, java.util.Vector<INode> sourceNodes, INode targetNode)
           
 boolean RedundantFilter.findRelation(char relation, java.util.Vector<INode> sourceNodes, INode targetNode)
           
protected static char RedundantGeneratorFilter.getRelation(INode a, INode b)
           
protected  char RedundantFilter.getRelation(INode a, INode b)
           
protected  boolean RedundantGeneratorFilter.verifyCondition1(INode C, INode D)
           
protected  boolean RedundantFilterEQ.verifyCondition1(INode C, INode D)
           
protected  boolean RedundantFilter.verifyCondition1(INode C, INode D)
           
protected  boolean RedundantGeneratorFilter.verifyCondition2(INode C, INode D)
           
protected  boolean RedundantFilterEQ.verifyCondition2(INode C, INode D)
           
protected  boolean RedundantFilter.verifyCondition2(INode C, INode D)
           
protected  boolean RedundantGeneratorFilter.verifyCondition3(INode C, INode D)
           
protected  boolean RedundantFilter.verifyCondition3(INode C, INode D)
           
protected  boolean RedundantFilter.verifyCondition4(INode C, INode D)
           
 

Method parameters in it.unitn.disi.smatch.filters with type arguments of type INode
static boolean RedundantGeneratorFilter.findRelation(char relation, INode sourceNode, java.util.Vector<INode> targetNodes)
           
 boolean RedundantFilter.findRelation(char relation, INode sourceNode, java.util.Vector<INode> targetNodes)
           
static boolean RedundantGeneratorFilter.findRelation(char relation, java.util.Vector<INode> sourceNodes, INode targetNode)
           
 boolean RedundantFilter.findRelation(char relation, java.util.Vector<INode> sourceNodes, INode targetNode)
           
static boolean RedundantGeneratorFilter.findRelation(char relation, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
           
static boolean RedundantGeneratorFilter.findRelation(char relation, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
           
 boolean RedundantFilter.findRelation(char relation, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
           
 boolean RedundantFilter.findRelation(char relation, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
           
 

Uses of INode in it.unitn.disi.smatch.loaders
 

Methods in it.unitn.disi.smatch.loaders with parameters of type INode
 java.lang.String PlainMappingLoader.getNodePath(INode node)
           
 

Method parameters in it.unitn.disi.smatch.loaders with type arguments of type INode
 java.util.HashMap<java.lang.String,java.lang.Integer> PlainMappingLoader.createHash(java.util.Vector<INode> nodes)
           
 

Uses of INode in it.unitn.disi.smatch.matchers.structure.node
 

Methods in it.unitn.disi.smatch.matchers.structure.node with parameters of type INode
protected static java.lang.Object[] BaseNodeMatcher.mkAxioms(java.util.HashMap<IAtomicConceptOfLabel,java.lang.Integer> hashConceptNumber, IMatchMatrix cLabMatrix, INode sourceNode, INode targetNode)
           
protected static java.lang.Object[] EvalNodeMatcher.mkAxioms(java.util.Hashtable<IAtomicConceptOfLabel,java.lang.Integer> hashConceptNumber, IMatchMatrix cLabMatrix, INode sourceNode, INode targetNode)
           
 boolean OptimizedStageNodeMatcher.nodeDisjoint(IMatchMatrix cLabMatrix, INode sourceNode, INode targetNode)
           
 char INodeMatcher.nodeMatch(IMatchMatrix cLabMatrix, INode sourceNode, INode targetNode)
          Matches two nodes and returns a relation between them.
 char EvalNodeMatcher.nodeMatch(IMatchMatrix cLabMatrix, INode sourceNode, INode targetNode)
           
 char DefaultNodeMatcher.nodeMatch(IMatchMatrix cLabMatrix, INode sourceNode, INode targetNode)
           
 boolean OptimizedStageNodeMatcher.nodeSubsumedBy(IMatchMatrix cLabMatrix, INode sourceNode, INode targetNode)
           
protected  java.util.ArrayList<java.util.ArrayList<java.lang.String>> BaseNodeMatcher.parseFormula(java.util.HashMap<IAtomicConceptOfLabel,java.lang.Integer> hashConceptNumber, INode node)
           
 

Uses of INode in it.unitn.disi.smatch.matchers.structure.tree
 

Methods in it.unitn.disi.smatch.matchers.structure.tree with parameters of type INode
 java.util.Vector<java.lang.String> BaselineTreeMatcher.getLemmasForReasoning(INode node)
           
 

Uses of INode in it.unitn.disi.smatch.renderers.context
 

Methods in it.unitn.disi.smatch.renderers.context with parameters of type INode
 void CTXMLContextRenderer.toCtxml(java.io.BufferedWriter ctxmlFile, INode node)
           
 

Uses of INode in it.unitn.disi.smatch.renderers.mapping
 

Method parameters in it.unitn.disi.smatch.renderers.mapping with type arguments of type INode
 IMapping TaxMEMappingRenderer.fromMatrixToMapping(IMatchMatrix matrix, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
           
 IMapping TaxMEMappingRenderer.fromMatrixToMapping(IMatchMatrix matrix, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
           
protected  void PlainXTopRenderer.printMatricesToFile(java.lang.String fileName, IMatchMatrix ClabMatrix, IMatchMatrix CnodMatrix, java.util.Vector<IAtomicConceptOfLabel> sourceACoLs, java.util.Vector<IAtomicConceptOfLabel> targetACoLs, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
          Prints cLab and cNode Matrices into file
protected  void PlainXTopRenderer.printMatricesToFile(java.lang.String fileName, IMatchMatrix ClabMatrix, IMatchMatrix CnodMatrix, java.util.Vector<IAtomicConceptOfLabel> sourceACoLs, java.util.Vector<IAtomicConceptOfLabel> targetACoLs, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
          Prints cLab and cNode Matrices into file
protected  void PlainSortedRenderer.printMatricesToFile(java.lang.String fileName, IMatchMatrix ClabMatrix, IMatchMatrix CnodMatrix, java.util.Vector<IAtomicConceptOfLabel> sourceACoLs, java.util.Vector<IAtomicConceptOfLabel> targetACoLs, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
          Prints cLab and cNode Matrices into file
protected  void PlainSortedRenderer.printMatricesToFile(java.lang.String fileName, IMatchMatrix ClabMatrix, IMatchMatrix CnodMatrix, java.util.Vector<IAtomicConceptOfLabel> sourceACoLs, java.util.Vector<IAtomicConceptOfLabel> targetACoLs, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
          Prints cLab and cNode Matrices into file
protected  void PlainRenderer.printMatricesToFile(java.lang.String fileName, IMatchMatrix ClabMatrix, IMatchMatrix CnodMatrix, java.util.Vector<IAtomicConceptOfLabel> sourceACoLs, java.util.Vector<IAtomicConceptOfLabel> targetACoLs, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
          Prints cLab and cNode Matrices into file
protected  void PlainRenderer.printMatricesToFile(java.lang.String fileName, IMatchMatrix ClabMatrix, IMatchMatrix CnodMatrix, java.util.Vector<IAtomicConceptOfLabel> sourceACoLs, java.util.Vector<IAtomicConceptOfLabel> targetACoLs, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
          Prints cLab and cNode Matrices into file
protected  void DefaultHTMLMappingRenderer.printMatricesToFile(java.lang.String fileName, IMatchMatrix ClabMatrix, IMatchMatrix CnodMatrix, java.util.Vector<IAtomicConceptOfLabel> sourceACoLs, java.util.Vector<IAtomicConceptOfLabel> targetACoLs, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
          Prints cLab and cNode Matrices into file
protected  void DefaultHTMLMappingRenderer.printMatricesToFile(java.lang.String fileName, IMatchMatrix ClabMatrix, IMatchMatrix CnodMatrix, java.util.Vector<IAtomicConceptOfLabel> sourceACoLs, java.util.Vector<IAtomicConceptOfLabel> targetACoLs, java.util.Vector<INode> sourceNodes, java.util.Vector<INode> targetNodes)
          Prints cLab and cNode Matrices into file
 



© 2010 Knowdive @ DISI