samples/openfixed/src/org/apidesign/openfixed/EventSupport.java
changeset 395 837ae5b09036
parent 394 ee6bd6cf2bf3
child 396 252337647cef
     1.1 --- a/samples/openfixed/src/org/apidesign/openfixed/EventSupport.java	Wed Aug 08 22:42:33 2012 +0200
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,19 +0,0 @@
     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 -}