comparison src/com/five_ten_sg/connectbot/transport/AbsTransport.java @ 44:959ebe0247b5 tn5250

start tn5250 integration
author Carl Byington <carl@five-ten-sg.com>
date Wed, 11 Jun 2014 09:30:50 -0700
parents 6b0f1ece1d91
children 80dcebe51af2
comparison
equal deleted inserted replaced
43:6b0f1ece1d91 44:959ebe0247b5
34 /** 34 /**
35 * @author Kenny Root 35 * @author Kenny Root
36 * 36 *
37 */ 37 */
38 public abstract class AbsTransport { 38 public abstract class AbsTransport {
39 private String TAG; 39 protected String TAG;
40 private TerminalManager manager; 40 protected TerminalManager manager;
41 private TerminalBridge bridge; 41 protected TerminalBridge bridge;
42 private HostBean host; 42 protected HostBean host;
43 private vt320 buffer; 43 protected vt320 buffer;
44 private String emulation; 44 protected String emulation;
45 45
46 class vt320Default extends vt320 { 46 class vt320Default extends vt320 {
47 @Override 47 @Override
48 public void debug(String s) { 48 public void debug(String s) {
49 Log.d(TAG, s); 49 Log.d(TAG, s);