Package org.fusesource.hawtjni.runtime

Examples of org.fusesource.hawtjni.runtime.JniClass


    public String getSimpleName() {
        return clazz.getSimpleName();
    }

    public String getNativeName() {
        JniClass annotation = clazz.getAnnotation(JniClass.class);
        if( annotation==null ) {
            return getSimpleName();
        } else {
            String name = annotation.name().trim();
            if( name.length()==0 ) {
                return getSimpleName();
            } else {
                return name;
            }
View Full Code Here

TOP

Related Classes of org.fusesource.hawtjni.runtime.JniClass

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.