Package com.taobao.zeus.web.platform.client.app.PlatformPlace

Examples of com.taobao.zeus.web.platform.client.app.PlatformPlace.KV


        queue.offer(type.kv);
        return this;
    }
   
    public PlacePath toDocId(String docId){
        queue.offer(new KV(WordPresenter.TAG, docId));
        return this;
    }
View Full Code Here


        queue.offer(type.kv);
        return this;
    }
   
    public PlacePath toDisplayJob(String jobId){
        queue.offer(new KV(JobDisplayPresenter.TAG, "job-"+jobId));
        return this;
    }
View Full Code Here

    public PlacePath toDisplayJob(String jobId){
        queue.offer(new KV(JobDisplayPresenter.TAG, "job-"+jobId));
        return this;
    }
    public PlacePath toDisplayGroup(String groupId){
      queue.offer(new KV(JobDisplayPresenter.TAG,"group-"+groupId));
      return this;
    }
View Full Code Here

            for(KV kv:pp.getSource()){
              if(!kv.key.equals(WordPresenter.TAG)){
                queue.offer(kv);
              }
            }
            queue.offer(new KV(WordPresenter.TAG, word.getFileModel().getId()));
            History.newItem(new PlatformPlace(queue).getToken(), false);
          }
          // 更新打开的文档状态
          presenter.updateLastOpen();
          toolBarContainer.onDocChange(word);
View Full Code Here

  @Override
  public void handle(PlatformPlaceChangeEvent event) {
    ShortcutCellResources s=com.google.gwt.core.shared.GWT.create(ShortcutCellResources.class);
    Application app=null;
    KV kv=event.getNewPlace().getCurrent();
    if(App.Home.getKv().value.equals(kv.value)){
      app=getApp(HomeApp.class);
    }else if(App.Document.getKv().value.equals(kv.value)){
      app=getApp(DocumentApp.class);
    }else if(App.Schedule.getKv().value.equals(kv.value)){
View Full Code Here

TOP

Related Classes of com.taobao.zeus.web.platform.client.app.PlatformPlace.KV

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.