Source code: com/prolifics/jni/ApplicationInterface.java
1 /* @(#)ApplicationInterface.java 77.5 99/01/15 13:12:09" */
2
3 /*************************************************/
4 /* Copyright (c) 1998 - 1999 */
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 ApplicationInterface extends WidgetInterface
17 {
18 ScreenInterface getScreen(String name, int instance);
19 ScreenInterface getScreen(String name);
20 ScreenInterface getScreen(int level);
21 ScreenInterface getScreen();
22 WidgetInterface getWidget(int id);
23 }