Package org.apache.axis.tool.core

Examples of org.apache.axis.tool.core.ClassFileHandler


public class Controller {

    public ArrayList getMethodList(WizardBean bean) throws ProcessException{
        ArrayList returnList = null;
        try {
            returnList = new ClassFileHandler().getMethodNamesFromClass(bean.getPage2bean().getAutomaticClassName(),
                                                           bean.getPage1bean().getFileLocation());
        } catch (IOException e) {
            throw new ProcessException("IO Error, The class file location may be faulty!",e);
        } catch (ClassNotFoundException e) {
           throw new ProcessException(" The specified class does not exist!!!");
View Full Code Here

TOP

Related Classes of org.apache.axis.tool.core.ClassFileHandler

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.