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: */package com.tc.config.schema;
04:
05: /**
06: * A {@link ConfigItem} that lets you set its value; useful for tests.
07: */
08: public interface SettableConfigItem {
09:
10: void setValue(Object newValue);
11:
12: void setValue(int newValue);
13:
14: void setValue(boolean newValue);
15:
16: }
|