samples/openfixed/src/org/apidesign/openfixed/GrowingListener.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 20 Mar 2011 08:12:26 +0100
changeset 373 c20d1d8ef2ca
permissions -rw-r--r--
Show composition of client and provider APIs
jtulach@373
     1
package org.apidesign.openfixed;
jtulach@373
     2
jtulach@373
     3
import java.util.EventListener;
jtulach@373
     4
jtulach@373
     5
// BEGIN: openfixed.listener
jtulach@373
     6
public interface GrowingListener extends EventListener {
jtulach@373
     7
    public void response(GrowingEvent ev);
jtulach@373
     8
}
jtulach@373
     9
// FINISH: openfixed.listener