summaryrefslogtreecommitdiffstats
path: root/src/test/misc/ITest.java
blob: 1924a8d1ef8f401060a6b45dd690489cdfe767cb (plain)
1
2
3
4
5
6
7
8
9
package test.misc;

import java.io.Serializable;

public interface ITest extends Serializable, Comparable<Long> {

	public void test();
	
}