/* * Created on 25-Jul-2004 * Created by Paul Gardner * Copyright (C) 2004, 2005, 2006 Aelitis, All Rights Reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * AELITIS, SAS au capital de 46,603.30 euros * 8 Allee Lenotre, La Grille Royale, 78600 Le Mesnil le Roi, France. * */ package org.gudy.azureus2.core3.internat; public class LocaleUtilDecoderCandidate implements Comparable { private int index; private String value; private LocaleUtilDecoder decoder; protected LocaleUtilDecoderCandidate( int _index ) { index = _index; } public String getValue() { return value; } public LocaleUtilDecoder getDecoder() { return decoder; } public void setDetails( LocaleUtilDecoder _decoder, String _value ) { decoder = _decoder; value = _value; } public int compareTo(Object o) { LocaleUtilDecoderCandidate candidate = (LocaleUtilDecoderCandidate)o; int res; if( value == null && candidate.value == null){ res = 0; }else if ( value == null ){ res = 1; }else if ( candidate.value == null ){ res = -1; }else{ res = value.length() - candidate.value.length(); if ( res == 0 ){ res = index - candidate.index; } } if ( decoder != null && candidate.getDecoder() != null ){ // System.out.println( "comp:" + decoder.getName() + "/" + candidate.getDecoder().getName() + " -> " + res ); } return( res ); } /* removed as this removed valid decoders that happen to decode to the same thing for the current public boolean equals(Object obj) { LocaleUtilDecoderCandidate other = (LocaleUtilDecoderCandidate) obj; if ( value == null && other.value == null ){ return( true ); }else if ( value == null || other.value == null ){ return( false ); }else{ return( value.equals( other.value )); } } */ }