KickJava   Java API By Example, From Geeks To Geeks.

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


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

13 public class SupportedContent {
14     private String JavaDoc name ;
15     
16     public String JavaDoc getName() {
17         return name;
18     }
19     
20     public void setName(String JavaDoc name) {
21         this.name = name;
22     }
23 }
24
Popular Tags