Package org.drools.guvnor.client.categorynav

Examples of org.drools.guvnor.client.categorynav.CategorySelectHandler


        final TextBox ruleName = new TextBox();




        final CategoryExplorerWidget exw = new CategoryExplorerWidget(new CategorySelectHandler(){
      public void selected(String selectedPath) { //not needed
      }
        });

        ruleName.setVisibleLength( 15 );
View Full Code Here


        PrettyFormLayout form = new PrettyFormLayout();
        form.addHeader("images/edit_category.gif", new HTML(constants.EditCategories())); //NON-NLS
        form.startSection(constants.CategoriesPurposeTip());

        explorer = new CategoryExplorerWidget(new CategorySelectHandler() {
            public void selected(String sel) {
                //don't need this here as we don't do anything on select in this spot
            }
         });
        SimplePanel editable = new SimplePanel();
View Full Code Here

TOP

Related Classes of org.drools.guvnor.client.categorynav.CategorySelectHandler

Copyright © 2018 www.massapicom. 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.