/[svn]/jsampler/trunk/src/org/jsampler/view/LscpFileFilter.java
ViewVC logotype

Contents of /jsampler/trunk/src/org/jsampler/view/LscpFileFilter.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1871 - (show annotations) (download)
Sun Mar 22 18:11:39 2009 UTC (15 years, 1 month ago) by iliev
File size: 1906 byte(s)
* Mac OS integration, work in progress:
* Added option to use native file choosers
  (choose Edit/Preferences, then click the `View' tab)

1 /*
2 * JSampler - a java front-end for LinuxSampler
3 *
4 * Copyright (C) 2005-2009 Grigor Iliev <grigor@grigoriliev.com>
5 *
6 * This file is part of JSampler.
7 *
8 * JSampler is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2
10 * as published by the Free Software Foundation.
11 *
12 * JSampler is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with JSampler; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22
23 package org.jsampler.view;
24
25 import java.io.File;
26
27 /**
28 * A file filter for LSCP script files.
29 * @author Grigor Iliev
30 */
31 public class LscpFileFilter extends JSFileFilter {
32
33 /** Creates a new instance of LscpFileFilter */
34 public LscpFileFilter() {
35 }
36
37 /**
38 * Returns <code>true</code> if the specified file is a LSCP script.
39 * The file is recognized by its extension.
40 * @return <code>true</code> if the specified file is a LSCP script;
41 * <code>false</code> otherwise.
42 */
43 public boolean
44 accept(File f) {
45 if(f.isDirectory()) return true;
46 return acceptFile(f.getName());
47
48 }
49
50 public boolean
51 accept(File dir, String name) {
52 return acceptFile(name);
53 }
54
55 private boolean
56 acceptFile(String fileName) {
57 int i = fileName.lastIndexOf('.');
58 if(i == -1) return false;
59 fileName = fileName.substring(i);
60
61 return fileName.equalsIgnoreCase(".lscp");
62 }
63
64 /**
65 * The description of this filter.
66 * @return The description of this filter: <b>LSCP Script Files (*.lscp)</b>.
67 */
68 public String
69 getDescription() { return "LSCP Script Files (*.lscp)"; }
70 }

  ViewVC Help
Powered by ViewVC