Examples of InnerClassManipulator


Examples of org.apache.felix.ipojo.manipulation.InnerClassManipulator

     * @throws IOException the inner class cannot be read
     */
    private void manipulateInnerClass(byte[] in, String cn, ComponentInfo ci) throws IOException {
        // Remove '.class' from class name.
        String name = ci.m_classname.substring(0, ci.m_classname.length() - 6);
        InnerClassManipulator man = new InnerClassManipulator(name, ci.m_fields);
        byte[] out = man.manipulate(in);

        m_classes.put(cn, out);

    }
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.