KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > config > schema > NewConfig


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.config.schema;
5
6 import org.apache.xmlbeans.XmlObject;
7
8 import com.tc.config.schema.dynamic.ConfigItem;
9
10 /**
11  * An interface implemented by all config objects.
12  */

13 public interface NewConfig {
14
15   void changesInItemIgnored(ConfigItem item);
16   
17   void changesInItemForbidden(ConfigItem item);
18   
19   XmlObject getBean();
20   
21 }
22
Popular Tags