Source code: com/prolifics/jni/FactoryInterface.java
1 /* @(#)FactoryInterface.java 77.3 99/01/13 16:22:09" */
2
3 /*************************************************/
4 /* Copyright (c) 1998 */
5 /* by */
6 /* JYACC, Inc., New York NY USA */
7 /* and contributors. */
8 /* Use of this program is governed by the */
9 /* JYACC Public License Version 1.0, a copy of */
10 /* which can be obtained at */
11 /* http://www.possl.org/jyacc-license.html */
12 /*************************************************/
13
14 package com.prolifics.jni;
15
16 public interface FactoryInterface
17 {
18 ScreenHandler getScreenHandler(String tag) throws
19 ClassNotFoundException, InstantiationException, IllegalAccessException;
20
21 GroupHandler getGroupHandler(String tag) throws
22 ClassNotFoundException, InstantiationException, IllegalAccessException;
23
24 GridHandler getGridHandler(String tag) throws
25 ClassNotFoundException, InstantiationException, IllegalAccessException;
26
27 DynamicLabelHandler getDynamicLabelHandler(String tag) throws
28 ClassNotFoundException, InstantiationException, IllegalAccessException;
29
30 TextHandler getTextHandler(String tag) throws
31 ClassNotFoundException, InstantiationException, IllegalAccessException;
32
33 ButtonHandler getButtonHandler(String tag) throws
34 ClassNotFoundException, InstantiationException, IllegalAccessException;
35
36 RadiobuttonHandler getRadiobuttonHandler(String tag) throws
37 ClassNotFoundException, InstantiationException, IllegalAccessException;
38
39 CheckboxHandler getCheckboxHandler(String tag) throws
40 ClassNotFoundException, InstantiationException, IllegalAccessException;
41
42 ListboxHandler getListboxHandler(String tag) throws
43 ClassNotFoundException, InstantiationException, IllegalAccessException;
44
45 OptionmenuHandler getOptionmenuHandler(String tag) throws
46 ClassNotFoundException, InstantiationException, IllegalAccessException;
47
48 TogglebuttonHandler getTogglebuttonHandler(String tag) throws
49 ClassNotFoundException, InstantiationException, IllegalAccessException;
50
51 ComboboxHandler getComboboxHandler(String tag) throws
52 ClassNotFoundException, InstantiationException, IllegalAccessException;
53
54 ScaleHandler getScaleHandler(String tag) throws
55 ClassNotFoundException, InstantiationException, IllegalAccessException;
56
57 ActiveXHandler getActiveXHandler(String tag) throws
58 ClassNotFoundException, InstantiationException, IllegalAccessException;
59
60 TabCardHandler getTabCardHandler(String tag) throws
61 ClassNotFoundException, InstantiationException, IllegalAccessException;
62 }