blob: ffb3c7fe632a2bdccce550bb08008ec960591c38 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.ace.client;
import org.apache.ace.client.Main.StatusHandler;
import org.apache.ace.client.services.AssociationService;
import org.apache.ace.client.services.AssociationServiceAsync;
import org.apache.ace.client.services.BundleDescriptor;
import org.apache.ace.client.services.Descriptor;
import org.apache.ace.client.services.GroupDescriptor;
import org.apache.ace.client.services.GroupService;
import org.apache.ace.client.services.GroupServiceAsync;
import org.apache.ace.client.services.LicenseDescriptor;
import com.allen_sauer.gwt.dnd.client.PickupDragController;
import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.rpc.AsyncCallback;
/**
* Table class for the groups.
*/
public class GroupTable extends ObjectTable<GroupDescriptor> {
private GroupServiceAsync m_groupService = GWT.create(GroupService.class);
private AssociationServiceAsync m_associationService = GWT.create(AssociationService.class);
GroupTable(StatusHandler handler, PickupDragController dragController, Main main) {
super(handler, dragController, main);
}
@Override
protected void getDescriptors(AsyncCallback<GroupDescriptor[]> callback) {
m_groupService.getGroups(callback);
}
@Override
protected String getText(GroupDescriptor gd) {
return gd.getName();
}
void addNew() {
String result = Window.prompt("Add feature", "New feature");
if (result != null) {
m_groupService.addGroup(result, new AsyncCallback<Void>() {
public void onFailure(Throwable caught) {
Window.alert("Error adding feature.");
}
public void onSuccess(Void result) {
// Hurrah!
}
});
}
}
@Override
protected String getTableID() {
return "groups";
}
@Override
protected void remove(GroupDescriptor object, AsyncCallback<Void> callback) {
m_groupService.remove(object, callback);
}
@Override
protected void link(GroupDescriptor object, Descriptor other, AsyncCallback<Void> callback) {
if (other instanceof BundleDescriptor) {
m_associationService.link((BundleDescriptor) other, object, callback);
}
else if (other instanceof LicenseDescriptor) {
m_associationService.link(object, (LicenseDescriptor) other, callback);
}
}
}