Package cn.wensiqun.asmsupport.utils.chooser

Examples of cn.wensiqun.asmsupport.utils.chooser.MethodChooser


     * @param parameterTypes 构造方法的的参数类型
     * @return
     */
    public final MethodEntity availableConstructor(AClass aclass,
            AClass[] parameterTypes){
        IMethodChooser chooser = new MethodChooser(aclass, this, ASConstant.INIT, parameterTypes);
        return chooser.chooseMethod();
    }
View Full Code Here


     * @param parameterTypes 方法的参数类型
     * @return
     */
    public final MethodEntity availableMethod(AClass where, String name,
            AClass[] parameterTypes){
      IMethodChooser chooser = new MethodChooser(where, this, name, parameterTypes);
        return chooser.chooseMethod();
    }
View Full Code Here

TOP

Related Classes of cn.wensiqun.asmsupport.utils.chooser.MethodChooser

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.