X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fschemes%2FColourSchemeProperty.java;h=3e8e87a2d148949f3feb3625425112ad72d36e1b;hb=11b2e9b16c3bb93d8788c2bc5d5654f6163402e6;hp=cee2cae354cb5454b719830a764aac4224d13b5c;hpb=a09d6f5c16b0e222806e035cd38bfb4c4eb92c75;p=jalview.git diff --git a/src/jalview/schemes/ColourSchemeProperty.java b/src/jalview/schemes/ColourSchemeProperty.java index cee2cae..3e8e87a 100755 --- a/src/jalview/schemes/ColourSchemeProperty.java +++ b/src/jalview/schemes/ColourSchemeProperty.java @@ -44,6 +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 * + * * If none of these formats is matched, the string is converted to a colour * using a hashing algorithm. For name "None", returns null. * @@ -78,10 +80,16 @@ public class ColourSchemeProperty return null; } - JalviewColourScheme scheme = JalviewColourScheme.forName(name); + + /* + * 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); if (scheme != null) { - return scheme.getColourScheme(forData); + return scheme; } /* @@ -91,14 +99,7 @@ public class ColourSchemeProperty * e.g. "red" or "ff00ed", * or failing that hash the name to a colour */ - UserColourScheme ucs = null; - try - { - ucs = new UserColourScheme(name); - } catch (Exception e) - { - // System.err.println("Ignoring exception when parsing colourscheme as applet-parameter"); - } + UserColourScheme ucs = new UserColourScheme(name); return ucs; }