Package com.redhat.ceylon.compiler.java.metadata

Examples of com.redhat.ceylon.compiler.java.metadata.Class.basic()


    public static boolean isBasic(java.lang.Object o) {
        if (o == null)
            return false;
        Class classAnnotation = getClassAnnotationForIdentifiableOrBasic(o);
        // unless marked as NOT identifiable, every instance is Basic
        return classAnnotation != null ? classAnnotation.basic() : true;
    }
   
    //
    // Java variadic conversions
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.