Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.techtrader.modules.tools.bytecode.visitor: Javadoc index of package com.techtrader.modules.tools.bytecode.visitor.


Package Samples:

com.techtrader.modules.tools.bytecode.visitor

Classes:

BCVisitor: Base class for visitors on a bytecode class. The public visit method will traverse the object graph of the given entity, calling the enter* and exit* methods as it visits each object. The traversal is done depth-first. Subclasses should override only the methods for visiting the entities they are interested in. Whenever there is a general method (i.e. enter/exitEntry) as well as a more specific one (i.e. enter/exitStringEntry), the more general method will be called first, followed by a call on the correct specific method. Most subclasses will override either the general or specific cases, but ...
VisitAcceptor: Interface denoting an entity that can accept a BCVisitor and provide its internal state to it. All entities in the bytecode framework implement this interface.
PrettyPrintVisitor: Visitor type that outputs a detailed, formatted document of the visited entity; similar to the javap -c command but more detailed.

Home | Contact Us | Privacy Policy | Terms of Service