Home | History | Annotate | Download | only in impl

Lines Matching defs:VISIBLE

90      * registerObject(Object, ULocale, int kind, boolean visible)
99 * registerObject(Object, ULocale, int kind, boolean visible)
102 public Factory registerObject(Object obj, ULocale locale, boolean visible) {
103 return registerObject(obj, locale, LocaleKey.KIND_ANY, visible);
108 * registerObject(Object, ULocale, int kind, boolean visible)
119 public Factory registerObject(Object obj, ULocale locale, int kind, boolean visible) {
120 Factory factory = new SimpleLocaleKeyFactory(obj, locale, kind, visible);
126 * Locale list, built from the Set of visible ids.
142 * ULocale list, built from the Set of visible ids.
350 * A subclass of Factory that uses LocaleKeys. If 'visible' the
355 protected final boolean visible;
357 public static final boolean VISIBLE = true;
363 protected LocaleKeyFactory(boolean visible) {
364 this.visible = visible;
371 protected LocaleKeyFactory(boolean visible, String name) {
372 this.visible = visible;
412 if (visible) {
447 * Return true if this id is one the factory supports (visible or
455 * Return the set of ids that this factory supports (visible or
473 buf.append(", visible: ");
474 buf.append(visible);
488 public SimpleLocaleKeyFactory(Object obj, ULocale locale, int kind, boolean visible) {
489 this(obj, locale, kind, visible, null);
492 public SimpleLocaleKeyFactory(Object obj, ULocale locale, int kind, boolean visible, String name) {
493 super(visible, name);
527 if (visible) {
585 Set<String> visibleIDs = ICUResourceBundle.getAvailableLocaleNameSet(bundleName, loader()); // only visible ids