KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > portletcontainer > impl > config > Properties


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.services.portletcontainer.impl.config;
6
7 /**
8  * Jul 7, 2004
9  * @author: Tuan Nguyen
10  * @email: tuan08@users.sourceforge.net
11  * @version: $Id: Properties.java,v 1.1 2004/07/08 19:11:45 tuan08 Exp $
12  */

13 public class Properties {
14     private String JavaDoc description ;
15     private String JavaDoc name;
16     private String JavaDoc value ;
17     public String JavaDoc getDescription() {
18         return description;
19     }
20     public void setDescription(String JavaDoc description) {
21         this.description = description;
22     }
23     public String JavaDoc getName() {
24         return name;
25     }
26     public void setName(String JavaDoc name) {
27         this.name = name;
28     }
29     public String JavaDoc getValue() {
30         return value;
31     }
32     public void setValue(String JavaDoc value) {
33         this.value = value;
34     }
35 }
Popular Tags