samples/extensibleicon/src/org/apidesign/extensibleicon/Modified.java
changeset 89 06f2e2a3d986
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/samples/extensibleicon/src/org/apidesign/extensibleicon/Modified.java	Sat Jun 14 09:53:51 2008 +0200
     1.3 @@ -0,0 +1,10 @@
     1.4 +package org.apidesign.extensibleicon;
     1.5 +
     1.6 +import java.io.IOException;
     1.7 +
     1.8 +// BEGIN: ext.modified
     1.9 +public interface Modified {
    1.10 +    public void save() throws IOException;
    1.11 +    public void discard() throws IOException;
    1.12 +}
    1.13 +// END: ext.modified