samples/openfixed/src/org/apidesign/openfixed/GrowingListener.java
changeset 373 c20d1d8ef2ca
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/samples/openfixed/src/org/apidesign/openfixed/GrowingListener.java	Sun Mar 20 08:12:26 2011 +0100
     1.3 @@ -0,0 +1,9 @@
     1.4 +package org.apidesign.openfixed;
     1.5 +
     1.6 +import java.util.EventListener;
     1.7 +
     1.8 +// BEGIN: openfixed.listener
     1.9 +public interface GrowingListener extends EventListener {
    1.10 +    public void response(GrowingEvent ev);
    1.11 +}
    1.12 +// FINISH: openfixed.listener