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
     1 package org.apidesign.openfixed;
     2 
     3 import java.util.EventListener;
     4 
     5 // BEGIN: openfixed.listener
     6 public interface GrowingListener extends EventListener {
     7     public void response(GrowingEvent ev);
     8 }
     9 // FINISH: openfixed.listener