org.eclipse.birt.report.resource.ViewerResourceHandle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of viewservlets Show documentation
Show all versions of viewservlets Show documentation
A component of the BIRT runtime
package org.eclipse.birt.report.resource;
import java.util.Locale;
import org.eclipse.birt.core.i18n.ResourceHandle;
public class ViewerResourceHandle extends ResourceHandle
{
/**
* Constructs the resource handle with a specific resource bundle, which is
* associated with locale.
*
* @param locale
* the locale of ULocale
type
*/
public ViewerResourceHandle( Locale locale )
{
super( locale );
}
}