Examples of InvokeReference


Examples of com.puppycrawl.tools.checkstyle.bcel.generic.InvokeReference

    {
        /** @see org.apache.bcel.generic.Visitor */
        public void visitINVOKESPECIAL(INVOKESPECIAL aINVOKESPECIAL)
        {
            addInvokeReference(
                new InvokeReference(aINVOKESPECIAL, mCurrentPoolGen));
        }
View Full Code Here

Examples of com.puppycrawl.tools.checkstyle.bcel.generic.InvokeReference

        /** @see org.apache.bcel.generic.Visitor */
        public void visitINVOKESTATIC(INVOKESTATIC aINVOKESTATIC)
        {
            addInvokeReference(
                new InvokeReference(aINVOKESTATIC, mCurrentPoolGen));
        }
View Full Code Here

Examples of com.puppycrawl.tools.checkstyle.bcel.generic.InvokeReference

        /** @see org.apache.bcel.generic.Visitor */
        public void visitINVOKEVIRTUAL(INVOKEVIRTUAL aINVOKEVIRTUAL)
        {
            addInvokeReference(
                new InvokeReference(aINVOKEVIRTUAL, mCurrentPoolGen));
        }
View Full Code Here

Examples of com.puppycrawl.tools.checkstyle.bcel.generic.InvokeReference

     */
    public boolean hasReference(JavaClass aJavaClass)
    {
        final Iterator it = getReferences().iterator();
        while (it.hasNext()) {
            final InvokeReference invokeRef = (InvokeReference) it.next();
            final String invokeClassName = invokeRef.getClassName();
            if (Repository.instanceOf(aJavaClass, invokeClassName)) {
                return true;
            }
        }
        return false;
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.