* * Needs-More-Work: The source code for this function is duplicated * in ActionSave#accept. */ public boolean accept(File dir, String name) { System.out.println("checking: "+ dir + " " + name); if (containsArg("filterPattern")) { // if pattern dosen't match, return false return true; } return true; // no pattern was specified } public void undoIt() { System.out.println("Undo does not make sense for ActionLoad"); } } /* end class ActionLoad */