INRIA & UMontrŽal

Uses of Interface
org.semanticweb.owl.align.Alignment

Packages that use Alignment
fr.inrialpes.exmo.align.impl   
fr.inrialpes.exmo.align.impl.eval   
fr.inrialpes.exmo.align.impl.method   
fr.inrialpes.exmo.align.impl.renderer   
fr.inrialpes.exmo.align.ling   
fr.inrialpes.exmo.align.parser   
fr.inrialpes.exmo.align.util   
org.semanticweb.owl.align   
 

Uses of Alignment in fr.inrialpes.exmo.align.impl
 

Classes in fr.inrialpes.exmo.align.impl that implement Alignment
 class BasicAlignment
          Represents an OWL ontology alignment.
 class DistanceAlignment
          Represents an OWL ontology alignment.
 

Fields in fr.inrialpes.exmo.align.impl declared as Alignment
protected  Alignment BasicEvaluator.align1
           
protected  Alignment BasicEvaluator.align2
           
 

Methods in fr.inrialpes.exmo.align.impl that return Alignment
 Alignment SimExtract.extractAlignment(java.lang.String type)
          Extract an alignment form the Similarity Matrix.
 Alignment Extractor.extract(java.lang.String type, Parameters param)
           
 Alignment DistanceAlignment.extract(java.lang.String type, Parameters param)
          Extract the alignment form the Similarity FRom OLA
 Alignment BasicAlignment.meet(Alignment align)
          The second alignment is meet with the first one meaning that for any pair (o, o', n, r) in O and (o, o', n', r) in O' the resulting alignment will contain: ( o, o', meet(n,n'), r) any pair which is in only one alignment is preserved.
 Alignment BasicAlignment.join(Alignment align)
          The second alignment is join with the first one meaning that for any pair (o, o', n, r) in O and (o, o', n', r) in O' the resulting alignment will contain: ( o, o", join(n,n'), r) any pair which is in only one alignment is discarded.
 Alignment BasicAlignment.compose(Alignment align)
          The second alignment is composed with the first one meaning that for any pair (o, o', n, r) in O and (o',o", n', r') in O' the resulting alignment will contain: ( o, o", join(n,n'), compose(r, r')) iff compose(r,r') exists.
 Alignment alignmentExtractor.extract(java.lang.String type, Parameters param)
           
 

Methods in fr.inrialpes.exmo.align.impl with parameters of type Alignment
 void Similarity.initialize(OWLOntology onto1, OWLOntology onto2, Alignment align)
           
 void MatrixMeasure.initialize(OWLOntology onto1, OWLOntology onto2, Alignment align)
           
 Alignment BasicAlignment.meet(Alignment align)
          The second alignment is meet with the first one meaning that for any pair (o, o', n, r) in O and (o, o', n', r) in O' the resulting alignment will contain: ( o, o', meet(n,n'), r) any pair which is in only one alignment is preserved.
 Alignment BasicAlignment.join(Alignment align)
          The second alignment is join with the first one meaning that for any pair (o, o', n, r) in O and (o, o', n', r) in O' the resulting alignment will contain: ( o, o", join(n,n'), r) any pair which is in only one alignment is discarded.
 Alignment BasicAlignment.compose(Alignment align)
          The second alignment is composed with the first one meaning that for any pair (o, o', n, r) in O and (o',o", n', r') in O' the resulting alignment will contain: ( o, o", join(n,n'), compose(r, r')) iff compose(r,r') exists.
protected  void BasicAlignment.ingest(Alignment alignment)
          Incorporate the cell of the alignment into it own alignment.
 

Constructors in fr.inrialpes.exmo.align.impl with parameters of type Alignment
BasicEvaluator(Alignment align1, Alignment align2)
          Creation
 

Uses of Alignment in fr.inrialpes.exmo.align.impl.eval
 

Constructors in fr.inrialpes.exmo.align.impl.eval with parameters of type Alignment
SymMeanEvaluator(Alignment align1, Alignment align2)
          Creation
PRecEvaluator(Alignment align1, Alignment align2)
          Creation
 

Uses of Alignment in fr.inrialpes.exmo.align.impl.method
 

Classes in fr.inrialpes.exmo.align.impl.method that implement Alignment
 class ClassNameAlignment
          This class aligns ontology with regard to the editing distance between class names.
 class ClassNameEqAlignment
          Represents an OWL ontology alignment.
 class ClassStructAlignment
          This class has been built for ISWC experiments with bibliography.
 class EditDistNameAlignment
          This class aligns ontology with regard to the editing distance between class names.
 class NameAndPropertyAlignment
          This class has been built for ISWC experiments with bibliography.
 class NameEqAlignment
          Represents an OWL ontology alignment.
 class PropSubsDistAlignment
          This class has been built for ISWC experiments with bibliography.
 class StrucSubsDistAlignment
          This class has been built for ISWC experiments with bibliography.
 class SubsDistNameAlignment
          This class has been built for ISWC experiments with bibliography.
 

Methods in fr.inrialpes.exmo.align.impl.method with parameters of type Alignment
 void SubsDistNameAlignment.align(Alignment alignment, Parameters params)
          Processing
 void StrucSubsDistAlignment.align(Alignment alignment, Parameters params)
          Processing
 void PropSubsDistAlignment.align(Alignment alignment, Parameters param)
          Processing
 void NameEqAlignment.align(Alignment alignment, Parameters params)
          This is not exactly equal, this uses toLowerCase()
 void NameAndPropertyAlignment.align(Alignment alignment, Parameters params)
          Processing
 void EditDistNameAlignment.align(Alignment alignment, Parameters params)
          This is not exactly equal, this uses toLowerCase()
 void ClassStructAlignment.align(Alignment alignment, Parameters params)
          Processing
 void ClassNameEqAlignment.align(Alignment alignment, Parameters params)
          This is not exactly equal, this uses toLowerCase()
 void ClassNameAlignment.align(Alignment alignment, Parameters params)
          This is not exactly equal, this uses toLowerCase()
 

Uses of Alignment in fr.inrialpes.exmo.align.impl.renderer
 

Fields in fr.inrialpes.exmo.align.impl.renderer declared as Alignment
(package private)  Alignment XSLTRendererVisitor.alignment
           
(package private)  Alignment SWRLRendererVisitor.alignment
           
(package private)  Alignment SEKTMappingRendererVisitor.alignment
           
(package private)  Alignment RDFRendererVisitor.alignment
           
(package private)  Alignment OWLAxiomsRendererVisitor.alignment
           
(package private)  Alignment COWLMappingRendererVisitor.alignment
           
 

Methods in fr.inrialpes.exmo.align.impl.renderer with parameters of type Alignment
 void XSLTRendererVisitor.visit(Alignment align)
           
 void SWRLRendererVisitor.visit(Alignment align)
           
 void SEKTMappingRendererVisitor.visit(Alignment align)
           
 void RDFRendererVisitor.visit(Alignment align)
           
 void OWLAxiomsRendererVisitor.visit(Alignment align)
           
 void COWLMappingRendererVisitor.visit(Alignment align)
           
 

Uses of Alignment in fr.inrialpes.exmo.align.ling
 

Classes in fr.inrialpes.exmo.align.ling that implement Alignment
 class JWNLAlignmentTest
          This Class uses JWNLDistances to align two ontologies.
 

Methods in fr.inrialpes.exmo.align.ling with parameters of type Alignment
 void JWNLAlignmentTest.align(Alignment alignment, Parameters params)
          Processing
 

Uses of Alignment in fr.inrialpes.exmo.align.parser
 

Fields in fr.inrialpes.exmo.align.parser declared as Alignment
protected  Alignment AlignmentParser.alignment
          the alignment that is parsed We always create a BasicAlignment.
 

Methods in fr.inrialpes.exmo.align.parser that return Alignment
 Alignment AlignmentParser.parse(java.lang.String uri, java.util.Hashtable loaded)
          Parses the document corresponding to the URI given in parameter If the current process has links (import or include) to others documents then they are parsed.
 

Uses of Alignment in fr.inrialpes.exmo.align.util
 

Methods in fr.inrialpes.exmo.align.util that return Alignment
static Alignment Procalign.run(java.lang.String[] args)
           
 

Uses of Alignment in org.semanticweb.owl.align
 

Subinterfaces of Alignment in org.semanticweb.owl.align
 interface AlignmentProcess
          Represents an OWL ontology alignment.
 

Methods in org.semanticweb.owl.align that return Alignment
 Alignment Alignment.meet(Alignment align)
           
 Alignment Alignment.join(Alignment align)
           
 Alignment Alignment.compose(Alignment align)
           
 

Methods in org.semanticweb.owl.align with parameters of type Alignment
 void AlignmentVisitor.visit(Alignment a)
           
 void AlignmentProcess.align(Alignment alignment, Parameters param)
          The align method computes the alignment from the ontologies.
 Alignment Alignment.meet(Alignment align)
           
 Alignment Alignment.join(Alignment align)
           
 Alignment Alignment.compose(Alignment align)
           
 


INRIA & UMontrŽal

..no bottom yet...