Package org.tod.meta

Examples of org.tod.meta.TypeInfo


*
* @author jeff
*/
public class TypeUtils {   
    public static TypeInfo getTypeInfo(ITypeInfo type) {
        TypeInfo t = new TypeInfo();
        t.setSignature(type.getName());
        return t;
    }
View Full Code Here


        t.setSignature(type.getName());
        return t;
    }
   
    public static TypeInfo getTypeInfo(Type type) {
        TypeInfo t = new TypeInfo();
        t.setSignature(type.signature());
        return t;
    }
View Full Code Here

TOP

Related Classes of org.tod.meta.TypeInfo

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.