X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fschemes%2FColourSchemeProperty.java;fp=src%2Fjalview%2Fschemes%2FColourSchemeProperty.java;h=fc92cd96b2f400fcb0cc4739d640f6b28df25877;hb=2f96125e48e277a8296e9e2b53719f346f043ceb;hp=3e8e87a2d148949f3feb3625425112ad72d36e1b;hpb=5160a2b12eaed0e6fb398ec3ff3805e1630b9b83;p=jalview.git diff --git a/src/jalview/schemes/ColourSchemeProperty.java b/src/jalview/schemes/ColourSchemeProperty.java index 3e8e87a..fc92cd9 100755 --- a/src/jalview/schemes/ColourSchemeProperty.java +++ b/src/jalview/schemes/ColourSchemeProperty.java @@ -44,7 +44,8 @@ public class ColourSchemeProperty * Returns a colour scheme for the given name, with which the given data may * be coloured. The name is not case-sensitive, and may be one of * + *
  • the name of a programmatically added colour scheme
  • + *
  • an AWT colour name e.g. red
  • + *
  • an AWT hex rgb colour e.g. ff2288
  • + *
  • residue colours list e.g. D,E=red;K,R,H=0022FF;c=yellow
  • + * * * If none of these formats is matched, the string is converted to a colour * using a hashing algorithm. For name "None", returns null. @@ -85,8 +88,8 @@ public class ColourSchemeProperty * if this is the name of a registered colour scheme, just * create a new instance of it */ - ColourSchemeI scheme = ColourSchemes.getInstance().getColourScheme( - name, forData, null); + ColourSchemeI scheme = ColourSchemes.getInstance().getColourScheme(name, + forData, null); if (scheme != null) { return scheme; @@ -146,8 +149,7 @@ public class ColourSchemeProperty */ public static String getColourName(ColourSchemeI cs) { - return cs == null ? ResidueColourScheme.NONE : cs - .getSchemeName(); + return cs == null ? ResidueColourScheme.NONE : cs.getSchemeName(); } }