Package org.aspectj.apache.bcel.classfile

Examples of org.aspectj.apache.bcel.classfile.DescendingVisitor


    private InnerClassDetector(){} // Don't use.
    /** Constructs an InnerClassDetector working on the JavaClass _jc. */
    public InnerClassDetector(JavaClass _jc){
      jc = _jc;
      cp = jc.getConstantPool();
      (new DescendingVisitor(jc, this)).visit();
    }
View Full Code Here


   * @throws ClassConstraintException otherwise.
   * @see #constant_pool_entries_satisfy_static_constraints()
   */
  private void field_and_method_refs_are_valid(){
    JavaClass jc = Repository.lookupClass(myOwner.getClassName());
    DescendingVisitor v = new DescendingVisitor(jc, new FAMRAV_Visitor(jc));
    v.visit();
  }
View Full Code Here

      CONST_Long = org.aspectj.apache.bcel.classfile.ConstantLong.class;
      CONST_Double = org.aspectj.apache.bcel.classfile.ConstantDouble.class;
      CONST_NameAndType = org.aspectj.apache.bcel.classfile.ConstantNameAndType.class;
      CONST_Utf8 = org.aspectj.apache.bcel.classfile.ConstantUtf8.class;

      carrier = new DescendingVisitor(_jc, this);
      carrier.visit();
    }
View Full Code Here

TOP

Related Classes of org.aspectj.apache.bcel.classfile.DescendingVisitor

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.