X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjalview%2Fstructure%2FStructureImportSettings.java;h=cbd59b1f9e7d79d9f03adbf3da3a546f963fd3a1;hb=1b10059cdf8b6a85fddd86a2a3c6588be3257c22;hp=82b5f693c47005220be281ce1cf6810a8d04a229;hpb=c889fc8840c719390e49eb27adbf6b1bf156ae12;p=jalview.git diff --git a/src/jalview/structure/StructureImportSettings.java b/src/jalview/structure/StructureImportSettings.java index 82b5f69..cbd59b1 100644 --- a/src/jalview/structure/StructureImportSettings.java +++ b/src/jalview/structure/StructureImportSettings.java @@ -1,5 +1,27 @@ +/* + * 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.structure; +import java.util.Locale; + import jalview.datamodel.PDBEntry; import jalview.datamodel.PDBEntry.Type; @@ -37,7 +59,6 @@ public class StructureImportSettings JMOL_PARSER, JALVIEW_PARSER } - /** * Determines the default file format for structure files to be downloaded * from the PDB sequence fetcher. Possible options include: PDB|mmCIF @@ -49,6 +70,7 @@ public class StructureImportSettings * are : JMolParser|JalveiwParser */ private static StructureParser defaultPDBFileParser = StructureParser.JMOL_PARSER; + public static void addSettings(boolean addAlignmentAnnotations, boolean processSecStr, boolean externalSecStr) { @@ -101,16 +123,16 @@ public class StructureImportSettings StructureImportSettings.showSeqFeatures = showSeqFeatures; } - public static String getDefaultStructureFileFormat() + public static PDBEntry.Type getDefaultStructureFileFormat() { - return defaultStructureFileFormat.toString(); + return defaultStructureFileFormat; } public static void setDefaultStructureFileFormat( String defaultStructureFileFormat) { StructureImportSettings.defaultStructureFileFormat = PDBEntry.Type - .valueOf(defaultStructureFileFormat.toUpperCase()); + .valueOf(defaultStructureFileFormat.toUpperCase(Locale.ROOT)); } public static String getDefaultPDBFileParser() @@ -127,7 +149,7 @@ public class StructureImportSettings public static void setDefaultPDBFileParser(String defaultPDBFileParser) { StructureImportSettings.defaultPDBFileParser = StructureParser - .valueOf(defaultPDBFileParser.toUpperCase()); + .valueOf(defaultPDBFileParser.toUpperCase(Locale.ROOT)); } }