01: /*
02: * Created on May 25, 2004
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.xdev.base.core.object;
08:
09: /**
10: * @author AYegorov
11: *
12: * Company: xDev Group.org
13: *
14: * URL: <a>http://activexml.dev.java.net</a>
15: *
16: * File name: ConfigurationObserver.java
17: *
18: * <p>Is bound: true | false</p>
19: *
20: * <table>
21: * <tr>
22: * <td>Description:</td>
23: * <td>
24: * <!--Your description here-->
25: * </td>
26: * </tr>
27: * </table>
28: * <tr>
29: * <td colspan="3">
30: * Properties
31: * </td>
32: * </tr>
33: * <tr>
34: * <td>Name</td>
35: * <td>Value</td>
36: * <td>Description</td>
37: * </tr>
38: * <tr>
39: * <td></td>
40: * <td></td>
41: * <td></td>
42: * </tr>
43: * </table>
44: */
45: public interface ConfigurationObserver {
46: public void update(Configuration observable, Object parameter)
47: throws Exception;
48: }
|