Package org.gjt.jclasslib.structures.elementvalues

Examples of org.gjt.jclasslib.structures.elementvalues.EnumElementValue


                lblConstNameIndex = linkLabel(),
                lblConstNameIndexVerbose = highlightLabel());
    }

    public void show(TreePath treePath) {
        EnumElementValue eeve = (EnumElementValue)
                ((BrowserTreeNode)treePath.getLastPathComponent()).getElement();

        constantPoolHyperlink(lblTypeNameIndex,
                lblTypeNameIndexVerbose,
                eeve.getTypeNameIndex());

        constantPoolHyperlink(lblConstNameIndex,
                lblConstNameIndexVerbose,
                eeve.getConstNameIndex());

        super.show(treePath);
    }
View Full Code Here


                lblConstNameIndex = linkLabel(),
                lblConstNameIndexVerbose = highlightLabel());
    }

    public void show(TreePath treePath) {
        EnumElementValue element = (EnumElementValue)
                ((BrowserTreeNode)treePath.getLastPathComponent()).getElement();

        constantPoolHyperlink(lblTypeNameIndex,
            lblTypeNameIndexVerbose,
            element.getTypeNameIndex());

        constantPoolHyperlink(lblConstNameIndex,
            lblConstNameIndexVerbose,
            element.getConstNameIndex());

        super.show(treePath);
    }
View Full Code Here

TOP

Related Classes of org.gjt.jclasslib.structures.elementvalues.EnumElementValue

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.