comparison src/de/mud/terminal/VDUBuffer.java @ 41:9621ac4dd5eb tn5250

start tn5250 integration
author Carl Byington <carl@five-ten-sg.com>
date Tue, 10 Jun 2014 17:40:09 -0700
parents 0ce5cc452d02
children bf01d1eec5c6
comparison
equal deleted inserted replaced
40:ecdbff49182c 41:9621ac4dd5eb
1 /* 1 /*
2 * This file is part of "JTA - Telnet/SSH for the JAVA(tm) platform". 2 * This file is part of "JTA - Telnet/SSH for the JAVA(tm) platform".
3 * 3 *
4 * (c) Matthias L. Jugel, Marcus Mei�ner 1996-2005. All Rights Reserved. 4 * (c) Matthias L. Jugel, Marcus Meißner 1996-2005. All Rights Reserved.
5 * 5 *
6 * Please visit http://javatelnet.org/ for updates and contact. 6 * Please visit http://javatelnet.org/ for updates and contact.
7 * 7 *
8 * --LICENSE NOTICE-- 8 * --LICENSE NOTICE--
9 * This program is free software; you can redistribute it and/or 9 * This program is free software; you can redistribute it and/or
35 * @author Matthias L. Jugel, Marcus Meißner 35 * @author Matthias L. Jugel, Marcus Meißner
36 * @version $Id: VDUBuffer.java 503 2005-10-24 07:34:13Z marcus $ 36 * @version $Id: VDUBuffer.java 503 2005-10-24 07:34:13Z marcus $
37 */ 37 */
38 public class VDUBuffer { 38 public class VDUBuffer {
39 39
40 /** The current version id tag */ 40 /** a generic display that should redraw on demand */
41 public final static String ID = "$Id: VDUBuffer.java 503 2005-10-24 07:34:13Z marcus $"; 41 protected VDUDisplay display;
42 42
43 /** Enable debug messages. */ 43 /** Enable debug messages. */
44 public final static int debug = 0; 44 public final static int debug = 0;
45 45
46 public int height, width; /* rows and columns */ 46 public int height, width; /* rows and columns */
860 // return upper; 860 // return upper;
861 // else 861 // else
862 // return value; 862 // return value;
863 // } 863 // }
864 864
865 /** a generic display that should redraw on demand */
866 protected VDUDisplay display;
867
868 public void setDisplay(VDUDisplay display) { 865 public void setDisplay(VDUDisplay display) {
869 this.display = display; 866 this.display = display;
870 } 867 }
871 868
872 /** 869 /**