KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > config > schema > test > SpringApplicationContextPathConfigBuilderImpl


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.test;
5
6 public class SpringApplicationContextPathConfigBuilderImpl extends BaseConfigBuilder implements SpringApplicationContextPathConfigBuilder {
7
8   public SpringApplicationContextPathConfigBuilderImpl(String JavaDoc path) {
9     super(7, new String JavaDoc[]{"path"});
10     setProperty("path", path);
11   }
12
13   public String JavaDoc toString() {
14     return elements(new String JavaDoc[] { "path" });
15   }
16 }
17
Popular Tags