@@ -30,7 +30,7 @@ public abstract class AbstractConnectionBean extends com.antlersoft.android.dbim
3030 public static final String TAG = "AbstractConnectionBean" ;
3131
3232 public static final String GEN_TABLE_NAME = "CONNECTION_BEAN" ;
33- public static final int GEN_COUNT = 94 ;
33+ public static final int GEN_COUNT = 95 ;
3434
3535 // Field constants
3636 public static final String GEN_FIELD__ID = "_id" ;
@@ -226,6 +226,8 @@ public abstract class AbstractConnectionBean extends com.antlersoft.android.dbim
226226 public static final int GEN_ID_DESKTOPSCALEPERCENTAGE = 92 ;
227227 public static final String GEN_FIELD_RDPSECURITY = "RDPSECURITY" ;
228228 public static final int GEN_ID_RDPSECURITY = 93 ;
229+ public static final String GEN_FIELD_ENABLEGLYPHCACHE = "ENABLEGLYPHCACHE" ;
230+ public static final int GEN_ID_ENABLEGLYPHCACHE = 94 ;
229231
230232 // SQL Command for creating the table
231233 public static String GEN_CREATE = "CREATE TABLE CONNECTION_BEAN (" +
@@ -322,7 +324,8 @@ public abstract class AbstractConnectionBean extends com.antlersoft.android.dbim
322324 "RDPGATEWAYPASSWORD TEXT," +
323325 "KEEPRDPGATEWAYPASSWORD INTEGER," +
324326 "DESKTOPSCALEPERCENTAGE INTEGER," +
325- "RDPSECURITY INTEGER" +
327+ "RDPSECURITY INTEGER," +
328+ "ENABLEGLYPHCACHE BOOLEAN" +
326329 ")" ;
327330
328331 // Members corresponding to defined fields
@@ -424,6 +427,7 @@ public abstract class AbstractConnectionBean extends com.antlersoft.android.dbim
424427 private boolean gen_keepRdpGatewayPassword ;
425428 private int gen_desktopScalePercentage ;
426429 private int gen_rdpSecurity ;
430+ private boolean gen_enableGlyphCache ;
427431
428432 public String Gen_tableName () {
429433 return GEN_TABLE_NAME ;
@@ -1186,6 +1190,16 @@ public void setRdpSecurity(int rdpSecurity) {
11861190 this .gen_rdpSecurity = rdpSecurity ;
11871191 }
11881192
1193+ @ Override
1194+ public boolean getEnableGlyphCache () {
1195+ return gen_enableGlyphCache ;
1196+ }
1197+
1198+ @ Override
1199+ public void setEnableGlyphCache (boolean enableGlyphCache ) {
1200+ this .gen_enableGlyphCache = enableGlyphCache ;
1201+ }
1202+
11891203 public android .content .ContentValues Gen_getValues () {
11901204 android .content .ContentValues values = new android .content .ContentValues ();
11911205 values .put (GEN_FIELD__ID , Long .toString (this .gen__Id ));
@@ -1287,6 +1301,7 @@ public android.content.ContentValues Gen_getValues() {
12871301 values .put (GEN_FIELD_KEEPRDPGATEWAYPASSWORD , (this .gen_keepRdpGatewayPassword ));
12881302 values .put (GEN_FIELD_DESKTOPSCALEPERCENTAGE , (this .gen_desktopScalePercentage ));
12891303 values .put (GEN_FIELD_RDPSECURITY , (this .gen_rdpSecurity ));
1304+ values .put (GEN_FIELD_ENABLEGLYPHCACHE , (this .gen_enableGlyphCache ));
12901305
12911306 return values ;
12921307 }
@@ -1402,6 +1417,7 @@ public int[] Gen_columnIndices(android.database.Cursor cursor) {
14021417 result [91 ] = cursor .getColumnIndex (GEN_FIELD_KEEPRDPGATEWAYPASSWORD );
14031418 result [92 ] = cursor .getColumnIndex (GEN_FIELD_DESKTOPSCALEPERCENTAGE );
14041419 result [93 ] = cursor .getColumnIndex (GEN_FIELD_RDPSECURITY );
1420+ result [94 ] = cursor .getColumnIndex (GEN_FIELD_ENABLEGLYPHCACHE );
14051421
14061422 return result ;
14071423 }
@@ -1696,6 +1712,9 @@ public void Gen_populate(android.database.Cursor cursor, int[] columnIndices) {
16961712 if (columnIndices [GEN_ID_RDPSECURITY ] >= 0 && !cursor .isNull (columnIndices [GEN_ID_RDPSECURITY ])) {
16971713 gen_rdpSecurity = cursor .getInt (columnIndices [GEN_ID_RDPSECURITY ]);
16981714 }
1715+ if (columnIndices [GEN_ID_ENABLEGLYPHCACHE ] >= 0 && !cursor .isNull (columnIndices [GEN_ID_ENABLEGLYPHCACHE ])) {
1716+ gen_enableGlyphCache = cursor .getInt (columnIndices [GEN_ID_ENABLEGLYPHCACHE ]) != 0 ;
1717+ }
16991718 }
17001719
17011720 /**
@@ -1801,6 +1820,7 @@ public void Gen_populate(android.content.ContentValues values) {
18011820 gen_keepRdpGatewayPassword = values .getAsBoolean (GEN_FIELD_KEEPRDPGATEWAYPASSWORD );
18021821 gen_desktopScalePercentage = values .getAsInteger (GEN_FIELD_DESKTOPSCALEPERCENTAGE );
18031822 gen_rdpSecurity = values .getAsInteger (GEN_FIELD_RDPSECURITY );
1823+ gen_enableGlyphCache = values .getAsBoolean (GEN_FIELD_ENABLEGLYPHCACHE );
18041824 }
18051825
18061826 /**
0 commit comments