Home | History | Annotate | Download | only in impl

Lines Matching defs:VISIBLE

86      * registerObject(Object, ULocale, int kind, boolean visible)
95 * registerObject(Object, ULocale, int kind, boolean visible)
98 public Factory registerObject(Object obj, ULocale locale, boolean visible) {
99 return registerObject(obj, locale, LocaleKey.KIND_ANY, visible);
104 * registerObject(Object, ULocale, int kind, boolean visible)
115 public Factory registerObject(Object obj, ULocale locale, int kind, boolean visible) {
116 Factory factory = new SimpleLocaleKeyFactory(obj, locale, kind, visible);
122 * Locale list, built from the Set of visible ids.
138 * ULocale list, built from the Set of visible ids.
346 * A subclass of Factory that uses LocaleKeys. If 'visible' the
351 protected final boolean visible;
353 public static final boolean VISIBLE = true;
359 protected LocaleKeyFactory(boolean visible) {
360 this.visible = visible;
367 protected LocaleKeyFactory(boolean visible, String name) {
368 this.visible = visible;
408 if (visible) {
443 * Return true if this id is one the factory supports (visible or
451 * Return the set of ids that this factory supports (visible or
469 buf.append(", visible: ");
470 buf.append(visible);
484 public SimpleLocaleKeyFactory(Object obj, ULocale locale, int kind, boolean visible) {
485 this(obj, locale, kind, visible, null);
488 public SimpleLocaleKeyFactory(Object obj, ULocale locale, int kind, boolean visible, String name) {
489 super(visible, name);
523 if (visible) {
581 Set<String> visibleIDs = ICUResourceBundle.getAvailableLocaleNameSet(bundleName, loader()); // only visible ids