changes.
[IRC.git] / Robust / src / Util / JoinOp.java
1 ///////////////////////////////////////////
2 //
3 //  Just an interface for specifying
4 //  how to join two instances of a
5 //  type.  This is useful within a
6 //  generic structure, like MultiViewMap.
7 //
8 ///////////////////////////////////////////
9 package Util;
10
11 public interface JoinOp<T> {
12
13   ////////////////////////////////////////
14   //
15   //  join() should accept null values for
16   //  the arguments!
17   //
18   ////////////////////////////////////////
19   T join( T a, T b );
20 }