View Javadoc

1   package net.kwfgrid.gworkflowdl.analysis;
2   
3   import net.kwfgrid.gworkflowdl.structure.Transition;
4   
5   /***
6    * Created by IntelliJ IDEA.
7    * User: hans
8    * Date: 18.10.2005
9    * Time: 11:38:12
10   * To change this template use File | Settings | File Templates.
11   */
12  public class TransitionPair {
13      public Transition first = null;
14      public Transition second = null;
15  
16      public TransitionPair() {}
17  
18      public TransitionPair(Transition f, Transition s) {
19          first = f;
20          second = s;
21      }
22  
23      public boolean equals(TransitionPair tp) {
24          return first == tp.first && second == tp.second;
25      }
26  }