comparison app/src/main/java/org/tn5250j/event/ScreenOIAListener.java @ 438:d29cce60f393

migrate from Eclipse to Android Studio
author Carl Byington <carl@five-ten-sg.com>
date Thu, 03 Dec 2015 11:23:55 -0800
parents src/org/tn5250j/event/ScreenOIAListener.java@77ac18bc1b2f
children
comparison
equal deleted inserted replaced
437:208b31032318 438:d29cce60f393
1 /**
2 *
3 * <p>Title: ScreenOIAListener</p>
4 * <p>Description: Main interface to draw the graphical image of the screen</p>
5 * <p>Copyright: Copyright (c) 2000 - 2002</p>
6 * <p>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
10 * any later version.
11 *
12 * This program 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
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this software; see the file COPYING. If not, write to
19 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
20 * Boston, MA 02111-1307 USA
21 * </p>
22 * @author Kenneth J. Pouncey
23 * @version 0.5
24 */
25
26 package org.tn5250j.event;
27
28 import org.tn5250j.framework.tn5250.ScreenOIA;
29
30 public interface ScreenOIAListener {
31
32 public static final int OIA_CHANGED_INSERT_MODE = 0;
33 public static final int OIA_CHANGED_KEYS_BUFFERED = 1;
34 public static final int OIA_CHANGED_KEYBOARD_LOCKED = 2;
35 public static final int OIA_CHANGED_MESSAGELIGHT = 3;
36 public static final int OIA_CHANGED_SCRIPT = 4;
37 public static final int OIA_CHANGED_BELL = 5;
38 public static final int OIA_CHANGED_CLEAR_SCREEN = 6;
39 public static final int OIA_CHANGED_INPUTINHIBITED = 7;
40 public static final int OIA_CHANGED_CURSOR = 8;
41
42
43 public void onOIAChanged(ScreenOIA oia, int change);
44
45 }