HomeSort by relevance Sort by last modified time
    Searched refs:ResourceBundle (Results 1 - 25 of 156) sorted by null

1 2 3 4 5 6 7

  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
ReplyTextBundleAware.java 18 import java.util.ResourceBundle;
21 * Interface for objects that allow getting and setting a reply text ResourceBundle. This
23 * set the default reply text ResourceBundle for the CommandHandler.
32 * Return the ResourceBundle containing the reply text messages
35 public ResourceBundle getReplyTextBundle();
38 * Set the ResourceBundle containing the reply text messages
41 public void setReplyTextBundle(ResourceBundle replyTextBundle);
AbstractCommandHandler.java 22 import java.util.ResourceBundle;
34 private ResourceBundle replyTextBundle;
37 // Support for reply text ResourceBundle
41 * Return the ResourceBundle containing the reply text messages
46 public ResourceBundle getReplyTextBundle() {
51 * Set the ResourceBundle containing the reply text messages
54 * @see ReplyTextBundleAware#setReplyTextBundle(java.util.ResourceBundle)
56 public void setReplyTextBundle(ResourceBundle replyTextBundle) {
ReplyTextBundleUtil.java 20 import java.util.ResourceBundle;
23 * Contains common utility method to conditionally set the reply text ResourceBundle on a
34 * <code>ResourceBundle</code> if and only if the <code>commandHandler</code> implements the
39 * @param replyTextBundle - the ResourceBundle to use for localizing reply text
43 public static void setReplyTextBundleIfAppropriate(CommandHandler commandHandler, ResourceBundle replyTextBundle) {
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
ReplyTextBundleAware.java 18 import java.util.ResourceBundle;
21 * Interface for objects that allow getting and setting a reply text ResourceBundle. This
23 * set the default reply text ResourceBundle for the CommandHandler.
32 * Return the ResourceBundle containing the reply text messages
35 public ResourceBundle getReplyTextBundle();
38 * Set the ResourceBundle containing the reply text messages
41 public void setReplyTextBundle(ResourceBundle replyTextBundle);
ReplyTextBundleUtil.java 18 import java.util.ResourceBundle;
23 * Contains common utility method to conditionally set the reply text ResourceBundle on a
34 * <code>ResourceBundle</code> if and only if the <code>commandHandler</code> implements the
39 * @param replyTextBundle - the ResourceBundle to use for localizing reply text
43 public static void setReplyTextBundleIfAppropriate(CommandHandler commandHandler, ResourceBundle replyTextBundle) {
  /external/apache-harmony/logging/src/test/java-internal/java/util/logging/
LoggerExtension.java 20 import java.util.ResourceBundle;
27 public static ResourceBundle loadResourceBundle(String resourceBundleName) {
  /external/icu/icu4c/source/common/unicode/
resbund.h 74 * The ResourceBundle class is not suitable for subclassing.
78 class U_COMMON_API ResourceBundle : public UObject {
90 * ResourceBundle passing Locale::FRENCH for the "locale" parameter,
106 ResourceBundle(const UnicodeString& packageName,
121 ResourceBundle(const UnicodeString& packageName,
130 ResourceBundle(UErrorCode &err);
146 ResourceBundle(const char* packageName,
156 ResourceBundle(const ResourceBundle &original);
167 ResourceBundle(UResourceBundle *res
    [all...]
  /external/icu/icu4c/source/common/
resbund.cpp 64 * ResourceBundle statically keeps track of which files have been
74 * The ResourceBundle parsing mechanism is implemented as a transition
123 * once a ResourceBundle object is constructed, the inheritance path
128 * someone. So when a ResourceBundle for xx_YY_zz is constructed,
140 * ResourceBundle supports TableCollation as a special case. This
141 * involves having special ResourceBundle objects which DO own their
143 * ResourceBundle cache (these are already cached in the
146 * interpretation, from the standpoint of ResourceBundle. .ctx files
147 * are loaded into otherwise ordinary ResourceBundle objects. They
158 * resources are read straight into the ResourceBundle object
    [all...]
resbund_cnv.cpp 25 ResourceBundle::ResourceBundle( const UnicodeString& path,
33 ResourceBundle::ResourceBundle( const UnicodeString& path,
41 ResourceBundle::constructForLocale(const UnicodeString& path,
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/
MockLayoutBinder.java 16 import android.databinding.tool.store.ResourceBundle;
23 super(new ResourceBundle.LayoutFileBundle(new File("./blah.xml"), "blah.xml", "layout",
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_bugzilla/org/eclipse/releng/util/bugzilla/
Messages.java 12 import java.util.ResourceBundle;
19 private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/
Messages.java 20 import java.util.ResourceBundle;
27 private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
SampleBundleClass.java 20 import java.util.ResourceBundle;
28 private static ResourceBundle bundle;
37 bundle = ResourceBundle.getBundle("tests.api.simple.SampleBundleClass");
ResourceBundleTest.java 28 import java.util.ResourceBundle;
37 ResourceBundle.Control c = ResourceBundle.Control.getControl(ResourceBundle.Control.FORMAT_DEFAULT);
43 * java.util.ResourceBundle#getBundle(java.lang.String,
47 ResourceBundle bundle;
52 bundle = ResourceBundle.getBundle(name, new Locale("fr", "FR", "VAR"));
55 bundle = ResourceBundle.getBundle(name, new Locale("fr", "FR", "v1"));
58 bundle = ResourceBundle.getBundle(name, new Locale("fr", "US", "VAR"));
61 bundle = ResourceBundle.getBundle(name, new Locale("de", "FR", "VAR"))
    [all...]
MissingResourceExceptionTest.java 22 import java.util.ResourceBundle;
38 ResourceBundle.getBundle("Non-ExistentBundle");
52 ResourceBundle.getBundle("Non-ExistentBundle");
66 ResourceBundle.getBundle("Non-ExistentBundle");
  /external/proguard/src/proguard/gui/
GUIResources.java 24 import java.util.ResourceBundle;
34 private static final ResourceBundle messages = ResourceBundle.getBundle(GUIResources.class.getName());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/support/
P.java 20 import java.util.ResourceBundle;
36 ResourceBundle b = ResourceBundle.getBundle(cls.getName());
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/support/
P.java 20 import java.util.ResourceBundle;
36 ResourceBundle b = ResourceBundle.getBundle(cls.getName());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/support/
P.java 3 import java.util.ResourceBundle;
19 ResourceBundle b = ResourceBundle.getBundle(cls.getName());
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
OverlayBundle.java 12 import java.util.ResourceBundle;
15 * A ResourceBundle that overlays one hierarchy atop another. This is
36 * data for a country using the standard ResourceBundle mechanism is
46 * The OverlayBundle is implemented as an array of n ResourceBundle
56 * method as in ResourceBundle). Instead of specifying a single base
58 * exactly as you would use ResourceBundle.
60 * @see java.util.ResourceBundle
68 public class OverlayBundle extends ResourceBundle {
85 private ResourceBundle[] bundles;
98 bundles = new ResourceBundle[baseNames.length]
    [all...]
  /external/emma/core/java12/com/vladium/util/exception/
ExceptionCommon.java 19 import java.util.ResourceBundle;
81 * @return ResourceBundle that corresponds to 'namespace' key or null if
89 public static ResourceBundle addExceptionResource (final Class namespace,
107 ResourceBundle temprb = null;
113 //temprb = ResourceBundle.getBundle (nameInNamespace);
118 temprb = ResourceBundle.getBundle (nameInNamespace, Locale.getDefault (), loader);
131 final ResourceBundle currentrb =
132 (ResourceBundle) s_exceptionCodeMap.get (namespace);
383 ResourceBundle rb;
389 rb = (ResourceBundle) s_exceptionCodeMap.get (namespace)
    [all...]
  /external/icu/icu4c/source/tools/ctestfw/
datamap.cpp 31 delete (ResourceBundle *)obj;
75 fData->put(UnicodeString(ures_getKey(t), -1, US_INV), new ResourceBundle(t, status), status);
91 fData->put(UnicodeString(key, keyLen), new ResourceBundle(t, status), status);
100 const ResourceBundle *RBDataMap::getItem(const char* key, UErrorCode &status) const
107 const ResourceBundle *r = (ResourceBundle *)fData->get(hashKey);
118 const ResourceBundle *r = getItem(key, status);
129 const ResourceBundle *r = getItem(key, status);
140 const ResourceBundle *r = getItem(key, status);
150 const ResourceBundle *r = getItem(key, status)
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/test/
StubResourceBundle.groovy 19 * Stub implementation of ResourceBundle for testing. Provide an optional Map of entries in the constructor,
23 class StubResourceBundle extends ResourceBundle {
  /libcore/luni/src/main/java/java/util/logging/
Formatter.java 21 import java.util.ResourceBundle;
53 * The message string is firstly localized using the {@code ResourceBundle}
65 ResourceBundle rb = null;
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
CompilerChef.java 16 import android.databinding.tool.store.ResourceBundle;
31 private ResourceBundle mResourceBundle;
37 public static CompilerChef createChef(ResourceBundle bundle, JavaFileWriter fileWriter) {
46 public ResourceBundle getResourceBundle() {

Completed in 1309 milliseconds

1 2 3 4 5 6 7