Mercurial > 510Connectbot
diff src/com/five_ten_sg/connectbot/bean/HostBean.java @ 123:446dbcf606eb
add more 5250 config items; ignore drawing outside the screen
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Thu, 19 Jun 2014 08:28:23 -0700 |
parents | 52b1d0ee27b1 |
children | cf677a6f586d |
line wrap: on
line diff
--- a/src/com/five_ten_sg/connectbot/bean/HostBean.java Wed Jun 18 19:00:34 2014 -0700 +++ b/src/com/five_ten_sg/connectbot/bean/HostBean.java Thu Jun 19 08:28:23 2014 -0700 @@ -56,7 +56,6 @@ private String monitor = null; private String hostemulation = null; private String encryption5250 = null; - private String password = null; private String library = null; private String initialMenu = null; private String program = null; @@ -290,14 +289,6 @@ this.encryption5250 = encryption5250; } - public String getPassword() { - return this.password; - } - - public void setPassword(String password) { - this.password = password; - } - public String getLibrary() { return this.library; } @@ -351,6 +342,9 @@ values.put(HostDatabase.FIELD_HOST_MONITOR, monitor); values.put(HostDatabase.FIELD_HOST_EMULATION, hostemulation); values.put(HostDatabase.FIELD_HOST_ENCRYPTION5250, encryption5250); + values.put(HostDatabase.FIELD_HOST_LIBRARY5250, library); + values.put(HostDatabase.FIELD_HOST_MENU5250, initialMenu); + values.put(HostDatabase.FIELD_HOST_PROGRAM5250, program); return values; }