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!!!");