View Javadoc

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