samples/openfixed/src/org/apidesign/openfixed/PostModificationListener.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 03 Apr 2020 16:32:36 +0200
changeset 416 9ed8788a1a4e
permissions -rw-r--r--
Using HTTPS to download the libraries
     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