Package com.forgeessentials.data.typeInfo

Examples of com.forgeessentials.data.typeInfo.TypeInfoStandard


        {
            info = new TypeInfoList(type);
        }
        else if (type.getType().isAnnotationPresent(SaveableObject.class))
        {
            info = new TypeInfoStandard(type.getType());
        }
        else if (Serializable.class.isAssignableFrom(type.getType()))
        {
            info = new TypeInfoSerialize(type);
        }
View Full Code Here

TOP

Related Classes of com.forgeessentials.data.typeInfo.TypeInfoStandard

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.