samples/openfixed/src/org/apidesign/openfixed/EventSupport.java
changeset 374 35da2d439e3d
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/samples/openfixed/src/org/apidesign/openfixed/EventSupport.java	Sun Mar 20 18:52:47 2011 +0100
     1.3 @@ -0,0 +1,19 @@
     1.4 +/*
     1.5 + * To change this template, choose Tools | Templates
     1.6 + * and open the template in the editor.
     1.7 + */
     1.8 +package org.apidesign.openfixed;
     1.9 +
    1.10 +/**
    1.11 + *
    1.12 + * @author Jaroslav Tulach <jtulach@netbeans.org>
    1.13 + */
    1.14 +interface EventSupport {
    1.15 +
    1.16 +    public void fireModificationEvent(ModificationEvent ev);
    1.17 +
    1.18 +    public void add(ModificationListener l);
    1.19 +
    1.20 +    public void remove(ModificationListener l);
    1.21 +    
    1.22 +}