monarch-initiative / loinc2hpo

Java library to map LOINC-encoded test results to Human Phenotype Ontology
http://loinc2hpo.readthedocs.io/en/latest/
Other
30 stars 8 forks source link

hpoListView #58

Closed pnrobinson closed 6 years ago

pnrobinson commented 6 years ago

In AnnotateTabController

    // TODO currently, this list is taking both HPO_CLass_Found and String at different parts of the app.
    @FXML private ListView hpoListView;

We should have a list take only one data type, and the type should always be declared. I tried this

 @FXML private ListView<HPO_Class_Found> hpoListView;

But there is one place in the code where the list is being initialized with a String.

kingmanzhang commented 6 years ago

This has been addressed.