KickJava   Java API By Example, From Geeks To Geeks.

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


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 import org.exoplatform.commons.utils.ExoProperties;
8 /**
9  * Jul 19, 2004
10  * @author: Tuan Nguyen
11  * @email: tuan08@users.sourceforge.net
12  * @version: $Id: PropertiesParam.java,v 1.1 2004/10/20 20:54:13 tuan08 Exp $
13  */

14 public class PropertiesParam extends Parameter {
15     private ExoProperties properties = new ExoProperties();
16   
17   public ExoProperties getProperties() { return properties ; }
18   
19   public String JavaDoc getProperty(String JavaDoc name) { return properties.getProperty(name) ; }
20   public void setProperty(String JavaDoc name, String JavaDoc value) { properties.setProperty(name, value) ;}
21 }
Popular Tags