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

Quick Search    Search Deep

org.apache.axis.utils.bytecode: Javadoc index of package org.apache.axis.utils.bytecode.


Package Samples:

org.apache.axis.utils.bytecode

Classes:

ChainedParamReader: Description: In ParamReader class, user can not get inherited method parameter from the class they passed in. This is done because of performance. This class is intended to setup the inheritant chain. If the method could not be found in the derived class, it will try to search it from super class, if not in the immedidate super class it will search super class's super class, until it reaches the root which is java.lang.Object. This is not an eager load since it only start searching the super class when it is asked to User: pengyu Date: Sep 6, 2003 Time: 11:43:24 PM
ClassReader: This is the class file reader for obtaining the parameter names for declared methods in a class. The class must have debugging attributes for us to obtain this information. This does not work for inherited methods. To obtain parameter names for inherited methods, you must use a paramReader for the class that originally declared the method. don't get tricky, it's the bare minimum. Instances of this class are not threadsafe -- don't share them.
ParamReader: This is the class file reader for obtaining the parameter names for declared methods in a class. The class must have debugging attributes for us to obtain this information. This does not work for inherited methods. To obtain parameter names for inherited methods, you must use a paramReader for the class that originally declared the method. don't get tricky, it's the bare minimum. Instances of this class are not threadsafe -- don't share them.
ParamNameExtractor: This class retieves function parameter names from bytecode built with debugging symbols. Used as a last resort when creating WSDL.

Home | Contact Us | Privacy Policy | Terms of Service