Source code: com/flexstor/common/util/FlexObservable.java
1 /*
2 * FlexObservable.java
3 *
4 * Copyright $Date: 2003/08/11 02:22:31 $ FLEXSTOR.net Inc.
5 *
6 * This work is licensed for use and distribution under license terms found at
7 * http://www.flexstor.org/license.html
8 *
9 */
10
11 package com.flexstor.common.util;
12
13 /**
14 * This class is neccessary for delegation of the observable
15 * behavior within any class not derived from java.util.Observable.
16 * To be able to use delegation, setChanged and clearChanged must
17 * be public.
18 */
19 public class FlexObservable
20 extends java.util.Observable
21 {
22 public void clearChanged()
23 {
24 super.clearChanged();
25 }
26
27 public void setChanged()
28 {
29 super.setChanged();
30 }
31
32 } // end of class