X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fschemes%2FColourSchemeLoader.java;fp=src%2Fjalview%2Fschemes%2FColourSchemeLoader.java;h=9f086882d4c27f9e672d02a2212aabdb8acae326;hb=be762d8d9c71a7aa3121e845c45911c7192b7827;hp=8660f3e8d540b93ea79c4ce98ad7bcffc3ea165b;hpb=d1bb7a31fc091606aedbc255a5766ac79e36fa91;p=jalview.git diff --git a/src/jalview/schemes/ColourSchemeLoader.java b/src/jalview/schemes/ColourSchemeLoader.java index 8660f3e..9f08688 100644 --- a/src/jalview/schemes/ColourSchemeLoader.java +++ b/src/jalview/schemes/ColourSchemeLoader.java @@ -1,3 +1,23 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * + * This file is part of Jalview. + * + * Jalview is free software: you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * + * Jalview is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.schemes; import jalview.binding.JalviewUserColours; @@ -30,14 +50,14 @@ public class ColourSchemeLoader { InputStreamReader in = new InputStreamReader( new FileInputStream(file), "UTF-8"); - + jalview.schemabinding.version2.JalviewUserColours jucs = new jalview.schemabinding.version2.JalviewUserColours(); - + org.exolab.castor.xml.Unmarshaller unmar = new org.exolab.castor.xml.Unmarshaller( jucs); jucs = (jalview.schemabinding.version2.JalviewUserColours) unmar .unmarshal(in); - + /* * non-case-sensitive colours are for 20 amino acid codes, * B, Z, X and Gap @@ -46,7 +66,7 @@ public class ColourSchemeLoader newColours = new Color[24]; Color[] lowerCase = new Color[23]; boolean caseSensitive = false; - + String name; int index; for (int i = 0; i < jucs.getColourCount(); i++) @@ -64,9 +84,9 @@ public class ColourSchemeLoader { continue; } - - Color color = new Color(Integer.parseInt(jucs.getColour(i) - .getRGB(), 16)); + + Color color = new Color( + Integer.parseInt(jucs.getColour(i).getRGB(), 16)); if (name.toLowerCase().equals(name)) { caseSensitive = true; @@ -77,7 +97,7 @@ public class ColourSchemeLoader newColours[index] = color; } } - + /* * instantiate the colour scheme */ @@ -92,19 +112,19 @@ public class ColourSchemeLoader // Could be old Jalview Archive format try { - InputStreamReader in = new InputStreamReader(new FileInputStream( - file), "UTF-8"); - + InputStreamReader in = new InputStreamReader( + new FileInputStream(file), "UTF-8"); + jalview.binding.JalviewUserColours jucs = new jalview.binding.JalviewUserColours(); - + jucs = JalviewUserColours.unmarshal(in); - + newColours = new Color[jucs.getColourCount()]; - + for (int i = 0; i < 24; i++) { - newColours[i] = new Color(Integer.parseInt(jucs.getColour(i) - .getRGB(), 16)); + newColours[i] = new Color( + Integer.parseInt(jucs.getColour(i).getRGB(), 16)); } ucs = new UserColourScheme(newColours); ucs.setName(jucs.getSchemeName()); @@ -112,13 +132,13 @@ public class ColourSchemeLoader { ex2.printStackTrace(); } - + if (newColours == null) { System.out.println("Error loading User ColourFile\n" + ex); } } - + return ucs; }