Package net.cis.client.game.ui.listBox

Examples of net.cis.client.game.ui.listBox.ListBoxEntryModel


  }

  private void fillListBox() {
    ListBox<ListBoxEntryModel> listbox = screen.findNiftyControl(
        "window.quest.list", ListBox.class);
    listbox.addItem(new ListBoxEntryModel("Quest 1", nifty.createImage(
        "ui/icons/quest.png", true)));
    listbox.addItem(new ListBoxEntryModel("Quest 2", nifty.createImage(
        "ui/icons/quest.png", true)));
    listbox.addItem(new ListBoxEntryModel("Quest 3", nifty.createImage(
        "ui/icons/quest.png", true)));
    listbox.addItem(new ListBoxEntryModel("Quest 4", nifty.createImage(
        "ui/icons/quest.png", true)));
  }
View Full Code Here

TOP

Related Classes of net.cis.client.game.ui.listBox.ListBoxEntryModel

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.