Package powercrystals.minefactoryreloaded.gui.control

Examples of powercrystals.minefactoryreloaded.gui.control.ListBoxElementCircuit


    List<IRedNetLogicCircuit> circuits = new LinkedList<IRedNetLogicCircuit>(MFRRegistry.getRedNetLogicCircuits());
    Collections.sort(circuits, new CircuitComparator());
   
    for(IRedNetLogicCircuit circuit : circuits)
    {
      _circuitList.add(new ListBoxElementCircuit(circuit));
    }
   
    addControl(_circuitList);
   
    _circuitScroll = new SliderVertical(this, 218, 16, 10, 234, _circuitList.getLastScrollPosition())
View Full Code Here

TOP

Related Classes of powercrystals.minefactoryreloaded.gui.control.ListBoxElementCircuit

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.