View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Interface for Object that can compare object.
5    *
6    * @author Grégory Borelli
7    * @version 2003/10/28 - 17:41:48 - gen 7.12
8    */
9   public interface GB_Equals
10  {
11  
12      /***
13       * Returns true if o1 and o2 are equals.
14       * Generally, implementation of this interface doen't make simply
15       * o1.equals(o2).
16       *
17       * @param o1 Object -
18       * @param o2 Object -
19       *
20       * @return boolean
21       */
22      boolean equals(
23              Object o1,
24              Object o2);
25  
26  }