Package com.google.gwt.ricordo.shared

Examples of com.google.gwt.ricordo.shared.VariableDetailsLight


  public void setData(List<VariableDetailsLight> data) {
      resultsPanel.clearResultTable();     
      resultsPanel.addResultRow(0, new String []{"Index","Variable URL","Biological Qualifier","MIRIAM URN"});

    for (int i = 0; i < data.size(); ++i) {
      VariableDetailsLight variableDetails = data.get(i);
      resultsPanel.addResultRow(i+1,variableDetails.getDisplayContent());
    }
   
    resultsPanel.applyResultTableStyles();
   
  }
View Full Code Here

TOP

Related Classes of com.google.gwt.ricordo.shared.VariableDetailsLight

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.