Package cpw.mods.fml.common.discovery.ASMDataTable

Examples of cpw.mods.fml.common.discovery.ASMDataTable.ASMData


        {
            @SuppressWarnings("unchecked")
            List<Map<String,Object>> packedList = (List<Map<String,Object>>) data.getAnnotationInfo().get("value");
            for (Map<String,Object> packed : packedList)
            {
                ASMData newData = data.copy(packed);
                result.add(newData);
            }
        }

        return result;
View Full Code Here

TOP

Related Classes of cpw.mods.fml.common.discovery.ASMDataTable.ASMData

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.