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.
     1 package org.apidesign.extensibleicon;
     2 
     3 import java.io.IOException;
     4 
     5 // BEGIN: ext.modified
     6 public interface Modified {
     7     public void save() throws IOException;
     8     public void discard() throws IOException;
     9 }
    10 // END: ext.modified