Package org.jibx.binding.classes

Examples of org.jibx.binding.classes.ClassFile


       
        // nothing to be done if called on "this" or implicit reference
        if (!m_isThis && !m_isImplicit) {
       
            // first check direct access to property from method class
            ClassFile from = mb.getClassFile();
            ClassItem access = m_getMethod;
            if (access == null) {
                access = m_fieldItem;
            }
            if (access != null && !from.isAccessible(access)) {
                access = m_objContext.getBoundClass().
                    getLoadMethod(access, mb.getClassFile());
            }
       
            // generated instruction either loads a field value or calls a "get"
View Full Code Here


           
            // nothing to be done if called on "this" or implicit reference
            if (!m_isThis && !m_isImplicit) {
           
                // first check direct access to property from method class
                ClassFile from = mb.getClassFile();
                ClassItem access = m_setMethod;
                if (access == null) {
                    access = m_fieldItem;
                }
                if (!from.isAccessible(access)) {
                    access = m_objContext.getBoundClass().
                        getStoreMethod(access, mb.getClassFile());
                }
               
                // save to local if no way of getting value
View Full Code Here

TOP

Related Classes of org.jibx.binding.classes.ClassFile

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.