comparison src/com/five_ten_sg/connectbot/util/HostDatabase.java @ 63:07c7055cc124 tn5250

add 5250 config entries
author Carl Byington <carl@five-ten-sg.com>
date Fri, 13 Jun 2014 15:35:46 -0700
parents aac8e0496ef9
children 446dbcf606eb
comparison
equal deleted inserted replaced
62:aac8e0496ef9 63:07c7055cc124
440 host.setStayConnected(Boolean.valueOf(c.getString(COL_STAYCONNECTED))); 440 host.setStayConnected(Boolean.valueOf(c.getString(COL_STAYCONNECTED)));
441 host.setWantX11Forward(Boolean.valueOf(c.getString(COL_WANTX11FORWARD))); 441 host.setWantX11Forward(Boolean.valueOf(c.getString(COL_WANTX11FORWARD)));
442 host.setX11Host(c.getString(COL_X11HOST)); 442 host.setX11Host(c.getString(COL_X11HOST));
443 host.setX11Port(c.getInt(COL_X11PORT)); 443 host.setX11Port(c.getInt(COL_X11PORT));
444 host.setMonitor(c.getString(COL_MONITOR)); 444 host.setMonitor(c.getString(COL_MONITOR));
445 host.setEmulation(c.getString(COL_EMULATION)); 445 host.setHostEmulation(c.getString(COL_EMULATION));
446 host.setEncryption5250(c.getString(COL_ENCRYPTION5250)); 446 host.setEncryption5250(c.getString(COL_ENCRYPTION5250));
447 hosts.add(host); 447 hosts.add(host);
448 } 448 }
449 449
450 return hosts; 450 return hosts;