Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-column-widget@93052 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-03-13 13:59:57 +00:00
parent 0916296bc4
commit 51f8c0cd40
2 changed files with 105 additions and 8 deletions

View File

@ -1542,3 +1542,99 @@ Compiling...
Compilation completed in 0.00 seconds Compilation completed in 0.00 seconds
Removing invalidated units Removing invalidated units
Finding entry point classes Finding entry point classes
Public resources found in...
Translatable source found in...
Found 0 cached/archived units. Used 0 / 2719 units from cache.
Compiling...
30% complete (ETR: 8 seconds)
30% complete (ETR: 8 seconds)
30% complete (ETR: 8 seconds)
30% complete (ETR: 8 seconds)
40% complete (ETR: 8 seconds)
50% complete (ETR: 6 seconds)
60% complete (ETR: 4 seconds)
70% complete (ETR: 3 seconds)
80% complete (ETR: 2 seconds)
90% complete (ETR: 1 seconds)
100% complete (ETR: 0 seconds)
Compilation completed in 17.12 seconds
Removing invalidated units
Finding entry point classes
Public resources found in...
Translatable source found in...
Found 2719 cached/archived units. Used 2719 / 2719 units from cache.
Compiling...
Compilation completed in 0.00 seconds
Removing invalidated units
Finding entry point classes
Public resources found in...
Translatable source found in...
Found 2719 cached/archived units. Used 2719 / 2719 units from cache.
Compiling...
Compilation completed in 0.00 seconds
Removing invalidated units
Finding entry point classes
Public resources found in...
Translatable source found in...
Found 0 cached/archived units. Used 0 / 2719 units from cache.
Compiling...
10% complete (ETR: 30 seconds)
10% complete (ETR: 30 seconds)
20% complete (ETR: 25 seconds)
30% complete (ETR: 19 seconds)
40% complete (ETR: 15 seconds)
50% complete (ETR: 11 seconds)
60% complete (ETR: 9 seconds)
70% complete (ETR: 7 seconds)
80% complete (ETR: 4 seconds)
90% complete (ETR: 2 seconds)
100% complete (ETR: 0 seconds)
Compilation completed in 29.24 seconds
Removing invalidated units
Finding entry point classes
Public resources found in...
Translatable source found in...
Found 2719 cached/archived units. Used 2719 / 2719 units from cache.
Compiling...
Compilation completed in 0.00 seconds
Removing invalidated units
Finding entry point classes
Public resources found in...
Translatable source found in...
Found 2719 cached/archived units. Used 2719 / 2719 units from cache.
Compiling...
Compilation completed in 0.00 seconds
Removing invalidated units
Finding entry point classes
Public resources found in...
Translatable source found in...
Found 0 cached/archived units. Used 0 / 2719 units from cache.
Compiling...
20% complete (ETR: 12 seconds)
20% complete (ETR: 12 seconds)
20% complete (ETR: 12 seconds)
30% complete (ETR: 12 seconds)
40% complete (ETR: 9 seconds)
50% complete (ETR: 6 seconds)
60% complete (ETR: 5 seconds)
70% complete (ETR: 3 seconds)
80% complete (ETR: 2 seconds)
90% complete (ETR: 1 seconds)
100% complete (ETR: 0 seconds)
Compilation completed in 16.62 seconds
Removing invalidated units
Finding entry point classes
Public resources found in...
Translatable source found in...
Found 2719 cached/archived units. Used 2719 / 2719 units from cache.
Compiling...
Compilation completed in 0.00 seconds
Removing invalidated units
Finding entry point classes
Public resources found in...
Translatable source found in...
Found 2719 cached/archived units. Used 2719 / 2719 units from cache.
Compiling...
Compilation completed in 0.00 seconds
Removing invalidated units
Finding entry point classes

View File

@ -113,6 +113,13 @@ public class ChangeColumnTypePanel extends FramedPanel implements
this.trId = trId; this.trId = trId;
this.columnName = columnName; this.columnName = columnName;
this.eventBus = eventBus; this.eventBus = eventBus;
create();
}
protected void create(){
Log.debug("Create ChangeColumnTypePanel(): [" + trId.toString() Log.debug("Create ChangeColumnTypePanel(): [" + trId.toString()
+ " columnName: " + columnName + "]"); + " columnName: " + columnName + "]");
@ -547,16 +554,9 @@ public class ChangeColumnTypePanel extends FramedPanel implements
public void onFailure(Throwable caught) { public void onFailure(Throwable caught) {
Log.error("load combo failure:" Log.error("load combo failure:"
+ caught.getLocalizedMessage()); + caught.getLocalizedMessage());
AlertMessageBox d = new AlertMessageBox("Error", alert("Error",
"Error retrieving columns of tabular resource:" "Error retrieving columns of tabular resource:"
+ trId.getId()); + trId.getId());
d.addHideHandler(new HideHandler() {
public void onHide(HideEvent event) {
}
});
d.show();
callback.onFailure(caught); callback.onFailure(caught);
} }
@ -578,6 +578,7 @@ public class ChangeColumnTypePanel extends FramedPanel implements
for (ColumnData cd : result) { for (ColumnData cd : result) {
Log.debug("ColumnData name:" + cd.getName()); Log.debug("ColumnData name:" + cd.getName());
if (cd.getName().compareTo(columnName) == 0) { if (cd.getName().compareTo(columnName) == 0) {
updateComboStatus(cd); updateComboStatus(cd);
} }
} }