Uses of Class
org.infai.emo.matcher.util.Tuple

Packages that use Tuple
org.infai.emo.matcher.editor   
org.infai.emo.matcher.editor.util   
org.infai.emo.matcher.util   
 

Uses of Tuple in org.infai.emo.matcher.editor
 

Methods in org.infai.emo.matcher.editor with parameters of type Tuple
 void ModelMatcherCanvas.drawLine(int yLeft, int yRight, Tuple tuple, double value, boolean leftToRight)
          This method draws a matching-line on the canvas.
 

Uses of Tuple in org.infai.emo.matcher.editor.util
 

Fields in org.infai.emo.matcher.editor.util declared as Tuple
private  Tuple<org.eclipse.emf.ecore.EObject,org.eclipse.emf.ecore.EObject> Line.tuple
          The tuple of elements which is connected by this line.
 

Methods in org.infai.emo.matcher.editor.util that return Tuple
 Tuple<org.eclipse.emf.ecore.EObject,org.eclipse.emf.ecore.EObject> Line.getTuple()
           
 

Methods in org.infai.emo.matcher.editor.util with parameters of type Tuple
 void Line.setTuple(Tuple<org.eclipse.emf.ecore.EObject,org.eclipse.emf.ecore.EObject> tuple)
           
 

Constructors in org.infai.emo.matcher.editor.util with parameters of type Tuple
Line(int xl, int yl, int xr, int yr, int red, int green, int blue, Tuple tuple, double value, boolean leftToRight)
          Constructor to draw a line with an attached tuple.
 

Uses of Tuple in org.infai.emo.matcher.util
 

Methods in org.infai.emo.matcher.util that return Tuple
 Tuple Tuple.invert()
          Method inverts the tuple by switching the position of its elements.
 

Methods in org.infai.emo.matcher.util that return types with arguments of type Tuple
 java.util.Map.Entry<Tuple,java.lang.Double> Matching.maximumMatchingEntry()
          Searches for the matching entry with the maximum matching value.
 java.util.Vector<java.util.Map.Entry<Tuple,java.lang.Double>> Matching.maximumMatchingEntryList()
          Searches for the matching entries with the maximum matching value.
 

Methods in org.infai.emo.matcher.util with parameters of type Tuple
 boolean Tuple.equals(Tuple<F,S> t)
          Method for comparing a tuple with another one by comparing their elements.
 double Matching.getValue(Tuple tuple)
          This method returns the matching value for a tuple.