
org.omnaest.i18nbinder.test.i18nfacade.i18n.Sub1 Maven / Gradle / Ivy
The newest version!
package org.omnaest.i18nbinder.test.i18nfacade.i18n;
import java.util.Locale;
import java.util.MissingResourceException;
import javax.annotation.Generated;
import java.util.Map;
import org.omnaest.i18nbinder.test.i18nfacade.i18n.sub1.Shared;
/**
* This is an automatically with i18nBinder generated facade class.
* To modify please adapt the underlying property files.
* If the facade class is instantiated with a given {@link Locale} using {@link #Sub1(Locale)} all non static methods will use this predefined {@link Locale} when invoked.
* The facade methods will silently ignore all {@link MissingResourceException}s by default. To alter this behavior see {@link #Sub1(Locale, boolean)}
* Resource base: i18n.sub1
* @see Shared
*/
@Generated(value = "http://code.google.com/p/i18n-binder/", date = "2012-06-24T18:35:00+02:00")
public class Sub1 {
/** @see Shared */
public final Shared Shared;
/**
* This {@link Sub1} constructor will create a new instance which silently ignores any {@link MissingResourceException}
* @see Sub1
* @param locale
*/
public Sub1( Locale locale )
{
this(locale,true);
}
/**
* @see Sub1
* @param locale
* @param silentlyIgnoreMissingResourceException
*/
public Sub1( Locale locale, boolean silentlyIgnoreMissingResourceException )
{
super();
this.Shared = new Shared( locale, silentlyIgnoreMissingResourceException );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy