X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fsurfacing%2FPrintableSpeciesSpecificDomainSimilariyData.java;h=6733e4f3a77d75553f2ca5f22a329864ffeb1297;hb=780b50a029ad352bd7b309eab711c48c6bce3ef0;hp=9c36890acdc7c35c57415bc010ee6896c31fbcad;hpb=48f7a89be9d34f1930a1f863e608235cc27184c5;p=jalview.git diff --git a/forester/java/src/org/forester/surfacing/PrintableSpeciesSpecificDomainSimilariyData.java b/forester/java/src/org/forester/surfacing/PrintableSpeciesSpecificDomainSimilariyData.java index 9c36890..6733e4f 100644 --- a/forester/java/src/org/forester/surfacing/PrintableSpeciesSpecificDomainSimilariyData.java +++ b/forester/java/src/org/forester/surfacing/PrintableSpeciesSpecificDomainSimilariyData.java @@ -7,7 +7,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 @@ -17,7 +17,7 @@ // 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 @@ -55,6 +55,7 @@ class PrintableSpeciesSpecificDomainSimilariyData implements SpeciesSpecificDoma _combinable_domain_id_to_count_map = new TreeMap(); } + @Override public void addProteinsExhibitingCombinationCount( final DomainId domain_id, final int count ) { if ( getCombinableDomainIdToCountsMap().containsKey( domain_id ) ) { throw new IllegalArgumentException( "Domain with id " + domain_id + " already exists" ); @@ -62,6 +63,7 @@ class PrintableSpeciesSpecificDomainSimilariyData implements SpeciesSpecificDoma getCombinableDomainIdToCountsMap().put( domain_id, count ); } + @Override public SortedMap getCombinableDomainIdToCountsMap() { return _combinable_domain_id_to_count_map; } @@ -82,6 +84,7 @@ class PrintableSpeciesSpecificDomainSimilariyData implements SpeciesSpecificDoma return _key_domain_proteins_count; } + @Override public int getNumberOfProteinsExhibitingCombinationWith( final DomainId domain_id ) { if ( !getCombinableDomainIdToCountsMap().containsKey( domain_id ) ) { throw new IllegalArgumentException( "Domain with id " + domain_id + " not found" ); @@ -95,6 +98,7 @@ class PrintableSpeciesSpecificDomainSimilariyData implements SpeciesSpecificDoma .toString(); } + @Override public StringBuffer toStringBuffer( final DomainSimilarityCalculator.Detailedness detailedness, final boolean html ) { final StringBuffer sb = new StringBuffer(); if ( detailedness == DomainSimilarityCalculator.Detailedness.PUNCTILIOUS ) {