KickJava   Java API By Example, From Geeks To Geeks.

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


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  * @author Tuan Nguyen (tuan08@users.sourceforge.net)
9  * @since Oct 20, 2004
10  * @version $Id: Parameter.java,v 1.1 2004/10/20 20:54:13 tuan08 Exp $
11  */

12 abstract public class Parameter {
13   private String JavaDoc description;
14   private String JavaDoc name;
15
16   public String JavaDoc getDescription() { return description; }
17   public void setDescription(String JavaDoc description) { this.description = description; }
18
19   public String JavaDoc getName() { return name; }
20   public void setName(String JavaDoc name) { this.name = name; }
21 }
22
Popular Tags