Package org.gjt.jclasslib.structures.constants

Examples of org.gjt.jclasslib.structures.constants.ConstantMethodTypeInfo


    public void show(TreePath treePath) {
       
        int constantPoolIndex = constantPoolIndex(treePath);

        try {
            ConstantMethodTypeInfo entry = (ConstantMethodTypeInfo)services.getClassFile().getConstantPoolEntry(constantPoolIndex, ConstantMethodTypeInfo.class);

            constantPoolHyperlink(lblType,
                                  lblTypeVerbose,
                                  entry.getDescriptorIndex());
       
        } catch (InvalidByteCodeException ex) {
            lblTypeVerbose.setText(MESSAGE_INVALID_CONSTANT_POOL_ENTRY);
        }
       
View Full Code Here

TOP

Related Classes of org.gjt.jclasslib.structures.constants.ConstantMethodTypeInfo

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.