KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > container > configuration > ValueParam


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5 package org.exoplatform.container.configuration;
6
7 /**
8  * Jul 19, 2004
9  * @author: Tuan Nguyen
10  * @email: tuan08@users.sourceforge.net
11  * @version: $Id: ValueParam.java,v 1.1 2004/10/20 20:54:13 tuan08 Exp $
12  */

13 public class ValueParam extends Parameter {
14     private String JavaDoc value ;
15   
16   public String JavaDoc getValue() { return value ; }
17   public void setValue(String JavaDoc s) { value = s ; }
18 }
Popular Tags