2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
27 import javax.swing.filechooser.*;
29 public class JalviewFileView extends FileView
31 static Hashtable alignSuffix = new Hashtable();
35 // TODO: these names should come from the FormatAdapter lists for
36 // readable/writable extensions
37 alignSuffix.put("amsa", "AMSA file");
38 alignSuffix.put("fasta", "Fasta file");
39 alignSuffix.put("fa", "Fasta file");
40 alignSuffix.put("fastq", "Fasta file");
41 alignSuffix.put("mfa", "Fasta file");
42 alignSuffix.put("blc", "BLC file");
43 alignSuffix.put("msf", "MSF file");
44 alignSuffix.put("pfam", "PFAM file");
45 alignSuffix.put("aln", "Clustal file");
46 alignSuffix.put("pir", "PIR file");
47 alignSuffix.put("jar", "Jalview Project file (old)");
48 alignSuffix.put("jvp", "Jalview Project file");
49 alignSuffix.put("amsa", "AMSA file");
50 alignSuffix.put("sto", "Stockholm File");
51 alignSuffix.put("stk", "Stockholm File");
52 alignSuffix.put("sto", "Stockholm File");
55 public String getTypeDescription(File f)
57 String extension = getExtension(f);
60 if (extension != null)
62 if (alignSuffix.containsKey(extension))
64 type = alignSuffix.get(extension).toString();
71 public Icon getIcon(File f)
73 String extension = getExtension(f);
76 if (extension != null)
78 if (alignSuffix.containsKey(extension))
80 icon = createImageIcon("/images/file.png");
88 * Get the extension of a file.
90 public static String getExtension(File f)
93 String s = f.getName();
94 int i = s.lastIndexOf('.');
96 if ((i > 0) && (i < (s.length() - 1)))
98 ext = s.substring(i + 1).toLowerCase();
104 /** Returns an ImageIcon, or null if the path was invalid. */
105 protected static ImageIcon createImageIcon(String path)
107 java.net.URL imgURL = JalviewFileView.class.getResource(path);
111 return new ImageIcon(imgURL);
116 .println("JalviewFileView.createImageIcon: Couldn't find file: "