/******************************************************************************* * Copyright © 2011, 2013 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation * *******************************************************************************/ package org.eclipse.edt.compiler.internal; import java.util.Comparator; /** * @author harmon * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ public class EGLCaseInsensitiveComparator implements Comparator { /* (non-Javadoc) * @see java.util.Comparator#compare(java.lang.Object, java.lang.Object) */ public int compare(Object arg0, Object arg1) { if (arg0 == null) { return -1; } if (arg1 == null) { return 1; } return arg0.toString().compareToIgnoreCase(arg1.toString()); } }