view base/src/java/util/Comparator.d @ 125:c43718956f21 default tip

Updated the snippets status.
author Jacob Carlborg <doob@me.com>
date Thu, 11 Aug 2011 19:55:14 +0200
parents e944a4cf537b
children
line wrap: on
line source

module java.util.Comparator;

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