Package org.drools.guvnor.client.rpc

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


        String name = Window.prompt( constants.CategoryNewNamePleaseEnter(),
                                     "" );
        if ( name != null ) {
            CategoryServiceAsync categoryService = GWT.create(CategoryService.class);
            categoryService.renameCategory( explorer.getSelectedPath(),
                                                                  name,
                                                                  new GenericCallback<java.lang.Void>() {
                                                                      public void onSuccess(Void v) {
                                                                          Window.alert( constants.CategoryRenamed() );
                                                                          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.