Package com.google.livingstories.client

Examples of com.google.livingstories.client.BackgroundContentItem


        case QUOTE:
          contentItem = new QuoteContentItem(contentItemId, creationDate, currentContributorIds,
              content, importance, livingStoryId);
          break;
        case BACKGROUND:
          contentItem = new BackgroundContentItem(contentItemId, creationDate,
              currentContributorIds, content, importance, livingStoryId,
              conceptNameTextBox.getText());
          break;
        case DATA:
          contentItem = new DataContentItem(contentItemId, creationDate, currentContributorIds,
View Full Code Here


        setIsStandalone(narrativeContentItem.isStandalone());
        setNarrativeDate(narrativeContentItem.getNarrativeDate());
        setNarrativeSummary(narrativeContentItem.getNarrativeSummary());
        break;
      case BACKGROUND:
        BackgroundContentItem backgroundContentItem = (BackgroundContentItem) clientContentItem;
        setName(backgroundContentItem.getConceptName());
        break;
    }
  }
View Full Code Here

        }
      case QUOTE:
        return new QuoteContentItem(getId(), getTimestamp(), getContributorIds(),
            getContent(), getImportance(), getLivingStoryId());
      case BACKGROUND:
        return new BackgroundContentItem(getId(), getTimestamp(), getContributorIds(),
            getContent(), getImportance(), getLivingStoryId(), getName());
      case DATA:
        return new DataContentItem(getId(), getTimestamp(), getContributorIds(),
            getContent(), getImportance(), getLivingStoryId());
      case ASSET:
View Full Code Here

            narrativeTypeSelector.selectConstant(narrativeContentItem.getNarrativeType());
            narrativeDateBox.setValue(narrativeContentItem.getNarrativeDate());
            narrativeSummaryTextArea.setContent(narrativeContentItem.getNarrativeSummary());
            break;
          case BACKGROUND:
            BackgroundContentItem backgroundContentItem =
                (BackgroundContentItem) selectedContentItem;
            if (backgroundContentItem.isConcept()) {
              conceptNameTextBox.setText(backgroundContentItem.getConceptName());
            }
            break;
        }
       
        int themeCount = themeListBox.getItemCount();
View Full Code Here

TOP

Related Classes of com.google.livingstories.client.BackgroundContentItem

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.