KickJava   Java API By Example, From Geeks To Geeks.

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


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: Description.java,v 1.1 2004/07/08 19:11:45 tuan08 Exp $
12  */

13 public class Description {
14     private String JavaDoc lang ;
15     private String JavaDoc description ;
16     
17     
18     public String JavaDoc getDescription() {
19         return description;
20     }
21     
22     public void setDescription(String JavaDoc description) {
23         this.description = description;
24     }
25     
26     public String JavaDoc getLang() {
27         return lang;
28     }
29     
30     public void setLang(String JavaDoc lang) {
31         this.lang = lang;
32     }
33 }
34
Popular Tags