comparison src/org/tn5250j/framework/tn5250/KeyStrokenizer.java @ 27:b29b39f386a4 tn5250

adding tn5250 files, native android logging
author Carl Byington <carl@five-ten-sg.com>
date Tue, 03 Jun 2014 12:29:12 -0700
parents 5949eb469a79
children 1e931ef5f776
comparison
equal deleted inserted replaced
26:9ae1c889a64c 27:b29b39f386a4
24 import android.util.Log; 24 import android.util.Log;
25 25
26 26
27 27
28 public class KeyStrokenizer { 28 public class KeyStrokenizer {
29 29 private static final String TAG = "KeyStrokenizer";
30 private StringBuffer keyStrokes; 30 private StringBuffer keyStrokes;
31 private StringBuffer sb; 31 private StringBuffer sb;
32 private int index; 32 private int index;
33 private int length; 33 private int length;
34
35 34
36 35
36
37 public KeyStrokenizer() { 37 public KeyStrokenizer() {
38 38
39 sb = new StringBuffer(); 39 sb = new StringBuffer();
40 setKeyStrokes(null); 40 setKeyStrokes(null);
41 } 41 }