Package com.piki.client.event

Examples of com.piki.client.event.AddWikiPageEventHandler


    for (String wikiPageName: storage.findAll()) {
      wikiPageBox.addWikiPage(wikiPageName);
    }
   
    if (eventBus != null) {
      eventBus.addHandler(AddWikiPageEvent.TYPE, new AddWikiPageEventHandler() {
       
        @Override
        public void onAddWikiPage(AddWikiPageEvent event) {
          wikiPageBox.addWikiPage(event.getWikiPageName());
        }
View Full Code Here

TOP

Related Classes of com.piki.client.event.AddWikiPageEventHandler

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.