KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > resources > impl > ResourceBundleDataImpl


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.resources.impl;
6
7 import org.exoplatform.services.resources.*;
8 /**
9  * Created by The eXo Platform SARL .
10  * Author : Tuan Nguyen
11  * tuan08@users.sourceforge.net
12  * Date: May 14, 2004
13  * Time: 1:12:22 PM
14  * @hibernate.class table="RESOURCE_BUNDLE_DATA"
15  * polymorphism="explicit"
16  * @hibernate.cache usage="read-write"
17  */

18 public class ResourceBundleDataImpl extends ResourceBundleDescriptionImpl implements ResourceBundleData {
19   private String JavaDoc data_ ;
20
21   public ResourceBundleDataImpl() {
22     setResourceType("-") ;
23     setLanguage(DEFAULT_LANGUAGE) ;
24   }
25
26   /**
27    * @hibernate.property length="65535" type="org.exoplatform.services.database.impl.TextClobType"
28    **/

29   public String JavaDoc getData() { return data_ ; }
30   public void setData(String JavaDoc data) { data_ = data; }
31 }
Popular Tags