final Columns columns = new Columns();
columns.setSizable(false);
columns.setParent(grid);
this.statusBarSelectedObject = new Column();
this.statusBarSelectedObject.setHeight("22px");
this.statusBarSelectedObject.setLabel(this._labelSelectedObject);
this.statusBarSelectedObject.setWidth("50%");
this.statusBarSelectedObject.setStyle("background-color: #D6DCDE; color: blue;");
this.statusBarSelectedObject.setParent(columns);
this.statusBarAppVersion = new Column();
this.statusBarAppVersion.setHeight("22px");
this.statusBarAppVersion.setLabel(this._labelAppVersion);
this.statusBarAppVersion.setWidth("35%");
this.statusBarAppVersion.setStyle("background-color: #D6DCDE; color: #FF0000;");
this.statusBarAppVersion.setParent(columns);
this.statusBarTableSchema = new Column();
this.statusBarTableSchema.setHeight("22px");
this.statusBarTableSchema.setLabel(this._labelTableSchema);
this.statusBarTableSchema.setWidth("15%");
this.statusBarTableSchema.setStyle("background-color: #D6DCDE; color: blue;");
this.statusBarTableSchema.setParent(columns);