Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/prolifics/jni/ScreenHandler.java


1   /* @(#)ScreenHandler.java  77.4 99/01/11 18:14:18" */
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 ScreenHandler
17  {
18    void screenEntry(ScreenInterface s, int context);
19    void screenExit(ScreenInterface s, int context);
20    void screenKey(ScreenInterface s, int key);
21  
22    void screenWebEnter(ScreenInterface s);
23    void screenWebExit(ScreenInterface s);
24  }