diff -r 000000000000 -r 7f38f014244c samples/exceptions/src/org/apidesign/exceptions/trycatchredo/IOManager.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/samples/exceptions/src/org/apidesign/exceptions/trycatchredo/IOManager.java Sun Feb 01 13:27:04 2009 +0100 @@ -0,0 +1,17 @@ +package org.apidesign.exceptions.trycatchredo; + +import java.net.URL; +import javax.swing.Action; + +/** + * + * @author Jaroslav Tulach + */ +public final class IOManager { + IOManager() { + } + + public static Action createSaveAction(URL where, CharSequence what) { + return new SaveAction(where, what); + } +}