KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > core > gui > scripting > ScriptManagerDocument


1 /*
2
3 The contents of this file are subject to the Mozilla Public License Version 1.1
4 (the "License") you may not use this file except in compliance with the License.
5
6 You may obtain a copy of the License at http://www.mozilla.org/MPL/
7
8 Software distributed under the License is distributed on an "AS IS" basis,
9 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
10 for the specific language governing rights and limitations under the License.
11
12 The Original Code is "BshInterpreter plugin for The Columba Project"
13
14 The Initial Developer of the Original Code is Celso Pinto
15 Portions created by Celso Pinto are Copyright (C) 2005.
16 Portions created by Frederik Dietz and Timo Stich are Copyright (C) 2003.
17
18 All Rights Reserved.
19
20 */

21 package org.columba.core.gui.scripting;
22
23
24 import java.util.List JavaDoc;
25
26 import org.columba.core.scripting.IScriptsObserver;
27 import org.columba.core.scripting.model.ColumbaScript;
28
29 /**
30     @author Celso Pinto (cpinto@yimports.com)
31  */

32 public interface ScriptManagerDocument
33 {
34
35     public void removeScript(ColumbaScript[] scripts);
36
37     public void refreshScriptList();
38
39     public ColumbaScript getScript(String JavaDoc path);
40
41     public List JavaDoc getScripts();
42
43     public void addObserver(IScriptsObserver obs);
44
45     public void removeObserver(IScriptsObserver obs);
46
47 }
48
Popular Tags