X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fschemes%2FColourSchemeI.java;h=96699c6f572874f610b594c127951ca149baf986;hb=712d1fca4bfa7e91d667e9931fb67fbc99a5f369;hp=124a24a2f60872700da5e0d21578f81e433e4397;hpb=174230b4233d9ce80f94527768d2cd2f76da11ab;p=jalview.git diff --git a/src/jalview/schemes/ColourSchemeI.java b/src/jalview/schemes/ColourSchemeI.java index 124a24a..96699c6 100755 --- a/src/jalview/schemes/ColourSchemeI.java +++ b/src/jalview/schemes/ColourSchemeI.java @@ -1,6 +1,6 @@ /* * Jalview - A Sequence Alignment Editor and Viewer - * Copyright (C) 2006 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle + * Copyright (C) 2007 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -22,11 +22,11 @@ import java.awt.*; public interface ColourSchemeI { - public Color findColour(String aa); + public Color findColour(char c); - public Color findColour(String s, int j); + public Color findColour(char c, int j); - public void setConsensus(java.util.Vector v); + public void setConsensus(java.util.Hashtable[] h); public void setConservation(jalview.analysis.Conservation c); @@ -40,5 +40,4 @@ public interface ColourSchemeI public void setThreshold(int ct, boolean ignoreGaps); - }