01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.config.schema.dynamic;
05:
06: /**
07: * An object that knows how to return a particular piece of configuration data.
08: */
09: public interface ConfigItem {
10:
11: Object getObject();
12:
13: void addListener(ConfigItemListener changeListener);
14:
15: void removeListener(ConfigItemListener changeListener);
16:
17: }
|