samples/openfixed/src/org/apidesign/openfixed/PostModificationEvent.java
changeset 374 35da2d439e3d
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/samples/openfixed/src/org/apidesign/openfixed/PostModificationEvent.java	Sun Mar 20 18:52:47 2011 +0100
     1.3 @@ -0,0 +1,14 @@
     1.4 +/*
     1.5 + * To change this template, choose Tools | Templates
     1.6 + * and open the template in the editor.
     1.7 + */
     1.8 +package org.apidesign.openfixed;
     1.9 +
    1.10 +import java.util.EventObject;
    1.11 +// BEGIN: openfixed.postevent
    1.12 +public final class PostModificationEvent extends EventObject {
    1.13 +    PostModificationEvent(Calculator calc) {
    1.14 +        super(calc);
    1.15 +    }
    1.16 +}
    1.17 +// END: openfixed.postevent