129130131132133134135136137138139
PrettyFormLayout pfl = new PrettyFormLayout(); pfl.startSection(); pfl.addRow(listPanel); pfl.addRow( resultsP ); pfl.endSection(); layout.addRow(pfl); /* Button b = new Button("Do a request");
7273747576777879808182
new HTML(constants.ImportOrExport()) ); widtab.startSection(constants.ImportFromAnXmlFile()); widtab.addAttribute( "", newImportWidget() ); widtab.endSection(); widtab.startSection(constants.ExportToAZipFile()); widtab.addAttribute( "", newExportWidget() );
7879808182838485868788
widtab.startSection(constants.ExportToAZipFile()); widtab.addAttribute( "", newExportWidget() ); widtab.endSection(); /* * Package import/export */ /*
709710711712713714715716717718719
vp.setWidth( "100%" ); PrettyFormLayout pfl = new PrettyFormLayout(); pfl.startSection(); pfl.addRow( new HTML( "<img src='images/information.gif'/> " + constants.ConfigureColumnsNote() ) ); pfl.endSection(); vp.add( pfl ); grid = doGrid(); vp.add( grid ); layout.add( vp );
117118119120121122123124125126127
hPanel.add( remove ); form.addAttribute(constants.AddNewStatus(), hPanel ); form.endSection(); initWidget( form ); } private void removeStatus() { String name = currentStatuses.getItemText(currentStatuses.getSelectedIndex());
118119120121122123124125126127128
pf.addRow(tb); pf.addRow(packages); pf.endSection(); tb = new Toolbar(); final ToolbarButton restoreAsset = new ToolbarButton(); restoreAsset.setText(constants.RestoreSelectedAsset()); tb.addButton(restoreAsset);
171172173174175176177178179180181
pf.startSection(constants.ArchivedAssets()); pf.addRow(tb); pf.addRow(grid); pf.endSection(); initWidget( pf ); }
9596979899100101102103104105
hPanel.add( updateWorkspace ); form.addAttribute( "", hPanel ); form.endSection(); initWidget( form ); } private void removeWorkspace() { String name = availableWorkspacesListBox.getItemText( availableWorkspacesListBox.getSelectedIndex() );
142143144145146147148149150151152
packagesToolbar.add( btnDeletePackage ); pf.startSection( constants.ArchivedPackagesList() ); pf.addRow( packagesToolbar ); pf.addRow( packages ); pf.endSection(); pf.startSection( constants.ArchivedAssets() ); pf.addRow( table ); pf.endSection();
146147148149150151152153154155156
pf.addRow( packages ); pf.endSection(); pf.startSection( constants.ArchivedAssets() ); pf.addRow( table ); pf.endSection(); initWidget( pf ); } private void deletePackage(final String uuid) {