samples/exceptions/src/org/apidesign/exceptions/trycatchredo/IOManager.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 01 Feb 2009 13:27:04 +0100
changeset 308 7f38f014244c
child 309 1687adb2b7f0
permissions -rw-r--r--
Simple write test is OK
jtulach@308
     1
package org.apidesign.exceptions.trycatchredo;
jtulach@308
     2
jtulach@308
     3
import java.net.URL;
jtulach@308
     4
import javax.swing.Action;
jtulach@308
     5
jtulach@308
     6
/**
jtulach@308
     7
 *
jtulach@308
     8
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jtulach@308
     9
 */
jtulach@308
    10
public final class IOManager {
jtulach@308
    11
    IOManager() {
jtulach@308
    12
    }
jtulach@308
    13
jtulach@308
    14
    public static Action createSaveAction(URL where, CharSequence what) {
jtulach@308
    15
        return new SaveAction(where, what);
jtulach@308
    16
    }
jtulach@308
    17
}