Lines Matching refs:domain

89  * <code>MessageFormatter</code> for each domain that is capable of
272 * Registers a message formatter for the specified domain.
274 * <strong>Note:</strong> Registering a message formatter for a domain
277 * message formatter for the specified domain.
279 * @param domain
282 public void putMessageFormatter(String domain,
284 fMessageFormatters.put(domain, messageFormatter);
288 * Returns the message formatter associated with the specified domain,
289 * or null if no message formatter is registered for that domain.
291 * @param domain The domain of the message formatter.
293 public MessageFormatter getMessageFormatter(String domain) {
294 return (MessageFormatter)fMessageFormatters.get(domain);
298 * Removes the message formatter for the specified domain and
301 * @param domain The domain of the message formatter.
303 public MessageFormatter removeMessageFormatter(String domain) {
304 return (MessageFormatter) fMessageFormatters.remove(domain);
310 * for the specified error domain.
312 * @param domain The error domain.
323 public String reportError(String domain, String key, Object[] arguments,
325 return reportError(fLocator, domain, key, arguments, severity);
331 * for the specified error domain.
333 * @param domain The error domain.
345 public String reportError(String domain, String key, Object[] arguments,
347 return reportError(fLocator, domain, key, arguments, severity, exception);
354 * @param domain The error domain.
366 String domain, String key, Object[] arguments,
368 return reportError(location, domain, key, arguments, severity, null);
375 * @param domain The error domain.
388 String domain, String key, Object[] arguments,
395 MessageFormatter messageFormatter = getMessageFormatter(domain);
402 str.append(domain);
433 errorHandler.warning(domain, key, parseException);
437 errorHandler.error(domain, key, parseException);
441 errorHandler.fatalError(domain, key, parseException);