Package com.taobao.zeus.web.platform.client.util.filesystem.FileUpdateEvent

Examples of com.taobao.zeus.web.platform.client.util.filesystem.FileUpdateEvent.FileUpdateHandler


  private final PlatformContext context;
  private WordView wordView;
  public WordPresenterImpl(PlatformContext context){
    this.context=context;
    wordView=new WordViewImpl(context,this);
    context.getPlatformBus().addHandler(FileUpdateEvent.TYPE, new FileUpdateHandler(){
      @Override
      public void onFileUpdate(FileUpdateEvent event) {
        FileModel model=event.getModel();
        wordView.updateFileName(model);
      }
View Full Code Here

TOP

Related Classes of com.taobao.zeus.web.platform.client.util.filesystem.FileUpdateEvent.FileUpdateHandler

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.