Package edu.pitt.terminology.util

Examples of edu.pitt.terminology.util.DynamicList


    JPanel panel = new JPanel();
    panel.setPreferredSize(new Dimension(350,300));
    panel.setLayout(new BorderLayout());
    JTextField search = new JTextField();
    search.setForeground(Color.lightGray);
    semanticTypeList = new DynamicList(search,getAllSemanticTypes());
    semanticTypeList.setMatchMode(DynamicList.CONTAINS_MATCH);
    panel.add(search,BorderLayout.NORTH);
    panel.add(new JScrollPane(semanticTypeList),BorderLayout.CENTER);
    return panel;
  }
View Full Code Here

TOP

Related Classes of edu.pitt.terminology.util.DynamicList

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.