01: /*
02: * Wi.Ser Framework
03: *
04: * Version: 1.8.1, 20-September-2007
05: * Copyright (C) 2005 Dirk von der Weiden <dvdw@imail.de>
06: *
07: * This library is free software; you can redistribute it and/or
08: * modify it under the terms of the GNU Lesser General Public
09: * License as published by the Free Software Foundation; either
10: * version 2 of the License, or (at your option) any later version.
11: *
12: * This library 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 GNU
15: * Lesser General Public License for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public
18: * License along with this library located in LGPL.txt in the
19: * license directory; if not, write to the
20: * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21: * Boston, MA 02111-1307, USA.
22: *
23: * If this agreement does not cover your requirements, please contact us
24: * via email to get detailed information about the commercial license
25: * or our service offerings!
26: *
27: */
28: package de.ug2t.unifiedGui.scripting;
29:
30: import de.ug2t.kernel.*;
31: import de.ug2t.unifiedGui.interfaces.*;
32:
33: public interface IUnScriptIntegrator extends
34: IUnSynchronizedGuiEventListener, IUnPreDisplayFunction,
35: IUnPostDisplayFunction, IKeExecutable, IUnMappingEventListener {
36: public static final String PRE_FCT = "PRE_FCT";
37: public static final String POST_FCT = "POST_FCT";
38: public static final String EXEC = "EXEC";
39: public static final String LISTENER = "LISTENER";
40: public static final String INDIRECT = "INDIRECT";
41: public static final String MAPPED = "MAPPED";
42: public static final String CALL = "CALL";
43:
44: public abstract void pcmf_setSynced(boolean xSynced);
45:
46: public abstract void pcmf_setScript(String xScript);
47:
48: public abstract void pcmf_setType(String xType);
49:
50: public abstract String pcmf_getType();
51: }
|