Source code: com/prolifics/jni/ListboxHandler.java
1 /* @(#)ListboxHandler.java 77.1 99/01/11 18:09:12" */
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 ListboxHandler
17 {
18 int listboxEntry(FieldInterface f, int item, int context);
19 int listboxExit(FieldInterface f, int item, int context);
20 int listboxActivate(FieldInterface f, int item);
21 int listboxValidate(FieldInterface f, int item, int context);
22 int listboxDoubleClick(FieldInterface f, int item);
23 }