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.setup;
04:
05: public class TestStringXmlObject extends TestXmlObject {
06:
07: private final String value;
08:
09: public TestStringXmlObject(String value) {
10: this .value = value;
11: }
12:
13: public String getStringValue() {
14: return this.value;
15: }
16:
17: }
|