FileDocCategorySizeDatePackage
BaseFactory.javaAPI DocApache Axis 1.41478Sat Apr 22 18:57:28 BST 2006org.apache.axis.encoding.ser

BaseFactory

public abstract class BaseFactory extends Object
Base Factory for BaseDeserializerFactory and BaseSerializerFactory. Code Reuse for the method cache
author
Davanum Srinivas

Fields Summary
private static final Class[]
STRING_CLASS_QNAME_CLASS
Constructors Summary
Methods Summary
protected java.lang.reflect.MethodgetMethod(java.lang.Class clazz, java.lang.String methodName)
Returns the the specified method - if any.

    
                 
          
        Method method = null;
        try {
            method = MethodCache.getInstance().getMethod(clazz, methodName, STRING_CLASS_QNAME_CLASS);
        } catch (NoSuchMethodException e) {
        }
        return method;