Package com.google.livingstories.client.ui

Examples of com.google.livingstories.client.ui.CoordinatedLivingStorySelector


        urlTextBox.getText(), titleTextBox.getText(), publishState, summaryEditor.getContent(),
        callback);
  }

  @UiFactory CoordinatedLivingStorySelector createLivingStoryList() {
    return new CoordinatedLivingStorySelector(livingStoryService);
  }
View Full Code Here


 
  private Widget createLivingStorySelector() {
    // Our livingStorySelector extends the superclass slightly, in that when the list
    // of living stories is successfully loaded up, this triggers the list boxes
    // to load the content items and retrieve the themes for the now-selected living story.
    livingStorySelector = new CoordinatedLivingStorySelector(livingStoryService, true) {
      @Override
      public void onSuccessNextStep() {
        super.onSuccessNextStep();
        if (hasSelection()) {
          LivingStoryData.setLivingStoryId(getSelectedLivingStoryId());
View Full Code Here

   
    initWidget(contentPanel);
  }
 
  private Widget createLivingStorySelectorPanel() {
    livingStorySelector = new CoordinatedLivingStorySelector(livingStoryService);
    return livingStorySelector.makeContainingPanel();
  }
View Full Code Here

TOP

Related Classes of com.google.livingstories.client.ui.CoordinatedLivingStorySelector

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.