X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fgo%2FPfamToGoMapping.java;h=33815abeaf379cbd84dd75389fe464bc77aa7edf;hb=eae9b4d545845ccc94c1465c1664086b22188ad1;hp=93ee62adb997b6cf560f3fafec900cf804c5a890;hpb=48f7a89be9d34f1930a1f863e608235cc27184c5;p=jalview.git diff --git a/forester/java/src/org/forester/go/PfamToGoMapping.java b/forester/java/src/org/forester/go/PfamToGoMapping.java index 93ee62a..33815ab 100644 --- a/forester/java/src/org/forester/go/PfamToGoMapping.java +++ b/forester/java/src/org/forester/go/PfamToGoMapping.java @@ -5,7 +5,7 @@ // Copyright (C) 2008-2009 Christian M. Zmasek // Copyright (C) 2008-2009 Burnham Institute for Medical Research // All rights reserved -// +// // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either @@ -15,24 +15,22 @@ // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. -// +// // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA // // Contact: phylosoft @ gmail . com -// WWW: www.phylosoft.org/forester +// WWW: https://sites.google.com/site/cmzmasek/home/software/forester package org.forester.go; -import org.forester.surfacing.DomainId; - public class PfamToGoMapping implements Mapping { - private final DomainId _pfam_domain_id; - private final GoId _go_id; + private final String _pfam_domain_id; + private final GoId _go_id; - public PfamToGoMapping( final DomainId pfam_domain_id, final GoId go_id ) { + public PfamToGoMapping( final String pfam_domain_id, final GoId go_id ) { _pfam_domain_id = pfam_domain_id; _go_id = go_id; } @@ -42,7 +40,7 @@ public class PfamToGoMapping implements Mapping { if ( this == m ) { return 0; } - return getKey().compareTo( ( DomainId ) m.getKey() ); + return getKey().compareTo( ( String ) m.getKey() ); } /** @@ -69,7 +67,7 @@ public class PfamToGoMapping implements Mapping { } @Override - public DomainId getKey() { + public String getKey() { return _pfam_domain_id; }