KickJava   Java API By Example, From Geeks To Geeks.

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


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 java.io.InputStream JavaDoc ;
8 import java.io.IOException JavaDoc ;
9 import java.util.* ;
10
11 /**
12  * May 7, 2004
13  * @author: Tuan Nguyen
14  * @email: tuan08@users.sourceforge.net
15  * @version: $Id: ExoResourceBundle.java,v 1.1 2004/08/29 21:48:03 benjmestrallet Exp $
16  **/

17 public class ExoResourceBundle extends PropertyResourceBundle {
18   
19   public ExoResourceBundle(InputStream JavaDoc is) throws IOException JavaDoc {
20     super(is) ;
21   }
22   
23   public ExoResourceBundle(InputStream JavaDoc is, ResourceBundle parent) throws IOException JavaDoc {
24     super(is) ;
25     setParent(parent);
26   }
27 }
Popular Tags