1 5 package org.exoplatform.services.resources.impl; 6 7 import java.io.InputStream ; 8 import java.io.IOException ; 9 import java.util.* ; 10 11 17 public class ExoResourceBundle extends PropertyResourceBundle { 18 19 public ExoResourceBundle(InputStream is) throws IOException { 20 super(is) ; 21 } 22 23 public ExoResourceBundle(InputStream is, ResourceBundle parent) throws IOException { 24 super(is) ; 25 setParent(parent); 26 } 27 } | Popular Tags |