Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 597a461db3195352ea7a95f88b5b0f8368f413a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
	// OrderedList<BiLetter>
	OrderedList l = new OrderedList(new Comparator() {
		/**
		 * This implementation of the <code>Comparator</code> method
		 * compares two <code>BiLetterRecord</code> objects using only
		 * their positions.
		 */
		public int compare(Object obj1, Object obj2) {
		}
	});

Back to the top