samples/extensibleicon/src/org/apidesign/extensibleicon/Modified.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:53:51 +0200
changeset 89 06f2e2a3d986
permissions -rw-r--r--
review2: ExtIcon example used to demonstrate the beauty of query pattern. two sections merged into one, a bit of reordering. Please review.
jtulach@89
     1
package org.apidesign.extensibleicon;
jtulach@89
     2
jtulach@89
     3
import java.io.IOException;
jtulach@89
     4
jtulach@89
     5
// BEGIN: ext.modified
jtulach@89
     6
public interface Modified {
jtulach@89
     7
    public void save() throws IOException;
jtulach@89
     8
    public void discard() throws IOException;
jtulach@89
     9
}
jtulach@89
    10
// END: ext.modified