no message
This commit is contained in:
@@ -34,6 +34,6 @@ public class AddSubscriber extends ComponentsRepositoryPass<Subscriber> {
|
||||
@Override
|
||||
protected void showDone() throws Exception {
|
||||
super.showDone();
|
||||
server.db.subscribers.ui_.Show(target.getPK());
|
||||
server.db.subscribers.getUI().Show(target.getPK());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -41,7 +41,7 @@ public class UpdateSelectedComponents extends Pass<Vector<Component>> {
|
||||
@Override
|
||||
protected void body() throws Exception {
|
||||
for (Component component : target) {
|
||||
Global.Components.ui_.Select(component.getPK());
|
||||
Global.Components.getUI().Select(component.getPK());
|
||||
Global.mainModule.getPass(PassCode.UpdateComponent).Do();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -37,6 +37,6 @@ public class DeleteServerObject<S extends RepositoryServer, D extends DBObject>
|
||||
}
|
||||
@Override
|
||||
protected void showDone() throws Exception {
|
||||
getDb().getTable(d).ui_.Show();
|
||||
getDb().getTable(d).getUI().Show();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -26,6 +26,6 @@ public class EditServerObject<S extends RepositoryServer, D extends DBObject> ex
|
||||
@Override
|
||||
protected void showDone() throws Exception {
|
||||
VisualCaches.RefreshCache(target);
|
||||
getDb().getTable(d).ui_.Show(target.getPK());
|
||||
getDb().getTable(d).getUI().Show(target.getPK());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -41,6 +41,6 @@ public class PublishServerObject<S extends RepositoryServer, D extends DBObject>
|
||||
@Override
|
||||
protected void showDone() throws Exception {
|
||||
super.showDone();
|
||||
getDb().getTable(d).ui_.Show(pk);
|
||||
getDb().getTable(d).getUI().Show(pk);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user