comparison src/org/tn5250j/framework/tn5250/ScreenPlanes.java @ 75:bf01d1eec5c6 tn5250

convert 5250 to vt320 attributes
author Carl Byington <carl@five-ten-sg.com>
date Sun, 15 Jun 2014 10:56:09 -0700
parents 1b9e27659ef7
children 044b1a951925
comparison
equal deleted inserted replaced
74:1aff8d06d5ef 75:bf01d1eec5c6
210 210
211 protected final char getChar(int pos) { 211 protected final char getChar(int pos) {
212 return screen[pos]; 212 return screen[pos];
213 } 213 }
214 214
215 protected final char getCharColor(int pos) {
216 return screenColor[pos];
217 }
218
215 protected final int getCharAttr(int pos) { 219 protected final int getCharAttr(int pos) {
216 return screenAttr[pos]; 220 return screenAttr[pos];
221 }
222
223 protected final int getCharExtended(int pos) {
224 return screenExtended[pos];
217 } 225 }
218 226
219 protected final boolean isAttributePlace(int pos) { 227 protected final boolean isAttributePlace(int pos) {
220 return screenIsAttr[pos] == 1 ? true : false; 228 return screenIsAttr[pos] == 1 ? true : false;
221 } 229 }