Package system.util

Examples of system.util.IndexedObject


 
  public static void List(system.util.Login login, DefaultComboBoxModel mibe) throws Exception{
    List list = login.getManager().createNamedQuery("Dolgozo.list").getResultList();
    for (int i = 0;i < list.size(); i++) {
      Dolgozo d = (Dolgozo)list.get(i);
      mibe.addElement(new IndexedObject(d.getTkod(),d.getNev()));
    }
    return;
  }
View Full Code Here

TOP

Related Classes of system.util.IndexedObject

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.