KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > macos > script > AppleScriptHandler


1 /*
2  * :tabSize=8:indentSize=8:noTabs=false:
3  * :folding=explicit:collapseFolds=1:
4  *
5  * AppleScriptHandler.java
6  * Copyright (C) 2002 Kris Kopicki
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21  */

22
23 package macos.script;
24
25 //{{{ Imports
26
import java.io.*;
27 import org.gjt.sp.jedit.*;
28 import macos.*;
29 //}}}
30

31 public class AppleScriptHandler extends Macros.Handler
32 {
33     //{{{ accept() method
34
public boolean accept(String JavaDoc path)
35     {
36         return ffilter.accept(new File(path));
37     } //}}}
38

39     //{{{ createMacro() method
40
public Macros.Macro createMacro(String JavaDoc macroName, String JavaDoc path)
41     {
42         if (macroName.toLowerCase().endsWith(".scpt"))
43             macroName = macroName.substring(0, macroName.length() - 5);
44         else if (macroName.toLowerCase().endsWith(".applescript"))
45             macroName = macroName.substring(0, macroName.length() - 12);
46         return new Macros.Macro(this,macroName,
47             Macros.Macro.macroNameToLabel(macroName),path);
48     } //}}}
49

50     //{{{ runMacro() method
51
public void runMacro(View view, Macros.Macro macro)
52     {
53         MacOSActions.runScript(macro.getPath());
54     }
55     //}}}
56

57     //{{{ runMacro() method
58
public void runMacro(View view, Macros.Macro macro, boolean ownNamespace)
59     {
60         runMacro(view,macro);
61     } //}}}
62

63     //{{{ Handler constructor
64
public AppleScriptHandler()
65     {
66         super("applescript");
67         ffilter = new ScriptFilter();
68     } //}}}
69

70     //{{{ Private members
71
private FileFilter ffilter;
72     //}}}
73
}
74
Popular Tags