samples/openfixed/src/org/apidesign/openfixed/PostModificationListener.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 20 Mar 2011 18:52:47 +0100
changeset 374 35da2d439e3d
permissions -rw-r--r--
Calculator and various ways to deliver changes in its counter to listeners
     1 package org.apidesign.openfixed;
     2 
     3 import java.util.EventListener;
     4 
     5 // BEGIN: openfixed.postprocessor
     6 public interface PostModificationListener extends EventListener {
     7     public void postProcess(PostModificationEvent ev);
     8 }
     9 // END: openfixed.postprocessor