samples/openfixed/src/org/apidesign/openfixed/PostModificationEvent.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 30 Oct 2014 21:30:10 +0100
changeset 409 40cabcdcd2be
permissions -rw-r--r--
Updating to NBMs from NetBeans 8.0.1 as some of them are required to run on JDK8
     1 /*
     2  * To change this template, choose Tools | Templates
     3  * and open the template in the editor.
     4  */
     5 package org.apidesign.openfixed;
     6 
     7 import java.util.EventObject;
     8 // BEGIN: openfixed.postevent
     9 public final class PostModificationEvent extends EventObject {
    10     PostModificationEvent(Calculator calc) {
    11         super(calc);
    12     }
    13 }
    14 // END: openfixed.postevent