Package org.dmlite.model.component.quote

Examples of org.dmlite.model.component.quote.Quote


    super(modelContext, viewContext);
  }

  protected void populateItem(final ListItem item) {
    try {
      Quote quote = (Quote) item.getModelObject();
      String text = quote.getText();
      String source = quote.getSource();
      Label quoteTextLabel = new Label("quoteText", text);
      item.add(quoteTextLabel);
      Label quoteSourceLabel = new Label("quoteSource", source);
      item.add(quoteSourceLabel);
    } catch (Exception e) {
View Full Code Here

TOP

Related Classes of org.dmlite.model.component.quote.Quote

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.