Searched defs:bundles (Results 1 - 6 of 6) sorted by relevance

/glassfish-3.1.2/web/war-util/src/main/java/org/glassfish/web/loader/
H A DStringManager.java90 private final HashMap<Locale, ResourceBundle> bundles = field in class:StringManager
151 ResourceBundle bundle = bundles.get(locale);
153 synchronized (bundles) {
156 bundles.put(locale, bundle);
162 bundles.put(locale, bundle);
349 ResourceBundle bundle = bundles.get(requestLocale);
351 synchronized (bundles) {
352 bundle = bundles.get(requestLocale);
356 bundles.put(requestLocale, bundle);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/
H A DStringManager.java89 private final HashMap<Locale, ResourceBundle> bundles = field in class:StringManager
176 ResourceBundle bundle = bundles.get(locale);
178 synchronized (bundles) {
179 bundle = bundles.get(locale);
182 bundles.put(locale, bundle);
367 ResourceBundle bundle = bundles.get(requestLocale);
369 synchronized (bundles) {
370 bundle = bundles.get(requestLocale);
374 bundles.put(requestLocale, bundle);
/glassfish-3.1.2/persistence/common/src/main/java/org/glassfish/persistence/common/
H A DI18NHelper.java48 private static Hashtable bundles = new Hashtable(); field in class:I18NHelper
68 ResourceBundle messages = (ResourceBundle)bundles.get(bundleName);
73 bundles.put(bundleName, messages);
/glassfish-3.1.2/deployment/javaee-full/src/main/java/org/glassfish/javaee/full/deployment/
H A DEarDeployer.java207 * @param bundles the bundles on which to perform the task
212 final Collection<ModuleDescriptor<BundleDescriptor>> bundles,
214 for (ModuleDescriptor module : bundles) {
230 Collection<ModuleDescriptor> bundles =
232 bundles.addAll(application.getModules());
237 for (final ModuleDescriptor bundle : bundles) {
247 bundles.removeAll(doOnAllTypedBundles(application, XModuleType.RAR, runnable));
250 bundles.removeAll(doOnAllTypedBundles(application, XModuleType.EJB, runnable));
253 bundles
211 doOnBundles( final Collection<ModuleDescriptor<BundleDescriptor>> bundles, final BundleBlock runnable) argument
[all...]
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/osgi/
H A DBundleProvisioner.java62 * Goes through a list of URIs and installs bundles from those locations.
63 * It installs the bundles in the same order as they appear in the configuration.
65 * This class is also responsible for updating or uninstalling bundles during
68 * It can also be passed a list of URIs of bundles to be started automatically.
69 * The list of bundles to be started must be a subset of list of bundles to be
70 * installed. The autostart bundles can also be configured with start level.
71 * It can be configured to start bundles persistently or transiently.
89 * e.g., what should be used as location string while installing bundles,
116 * Return list of locations from where bundles ar
310 uninstall(Collection<Jar> bundles) argument
[all...]
/glassfish-3.1.2/admingui/devtests/src/test/java/org/glassfish/admingui/devtests/
H A DBaseSeleniumTestClass.java79 private static final Map<String, String> bundles = new HashMap<String, String>() { field in class:BaseSeleniumTestClass
950 String bundle = bundles.get(bundleName);

Completed in 41 milliseconds