Package org.geomajas.widget.utility.smartgwt.client.ribbon.RibbonColumnRegistry

Examples of org.geomajas.widget.utility.smartgwt.client.ribbon.RibbonColumnRegistry.RibbonColumnCreator


*/
public class Showcase implements EntryPoint {

  public void onModuleLoad() {
    // Add my custom ribbon column type to the registry:
    RibbonColumnRegistry.put("MyCustomColumn", new RibbonColumnCreator() {

      public RibbonColumn create(List<ClientToolInfo> tools, MapWidget mapWidget) {
        return new MyCustomRibbonColumn(mapWidget);
      }
    });
View Full Code Here

TOP

Related Classes of org.geomajas.widget.utility.smartgwt.client.ribbon.RibbonColumnRegistry.RibbonColumnCreator

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.