Package appeng.api.implementations.items

Examples of appeng.api.implementations.items.IItemGroup


        int limit = j.getValue();

        if ( j.getKey().getItem() instanceof IItemGroup )
        {
          IItemGroup ig = (IItemGroup) j.getKey().getItem();
          String str = ig.getUnlocalizedGroupName( u.getSupported().keySet(), j.getKey() );
          if ( str != null )
            name = Platform.gui_localize( str ) + (limit > 1 ? " (" + limit + ")" : "");
        }

        if ( name == null )
View Full Code Here

TOP

Related Classes of appeng.api.implementations.items.IItemGroup

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.