module java.util.Comparator;

interface Comparator
{
	//bool equals (Object obj);
	int compare (Object o1, Object o2);
}