Package org.drools.guvnor.client.rpc

Examples of org.drools.guvnor.client.rpc.CategoryServiceAsync.removeCategory()


    }

    private void deleteSelected() {
        if ( Window.confirm( constants.AreYouSureYouWantToDeleteCategory() + explorer.getSelectedPath() ) ) {
            CategoryServiceAsync categoryService = GWT.create(CategoryService.class);
            categoryService.removeCategory( explorer.getSelectedPath(),
                                                                  new GenericCallback<java.lang.Void>() {

                                                                      public void onSuccess(Void v) {
                                                                          explorer.refresh();
                                                                      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.