Java Doc for StringTranslator.java in  » ESB » open-esb » com » sun » jbi » management » system » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » ESB » open esb » com.sun.jbi.management.system 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.jbi.management.system.StringTranslator

All known Subclasses:   com.sun.jbi.management.system.ScaffoldEnvironmentContext,
StringTranslator
public class StringTranslator implements com.sun.jbi.StringTranslator(Code)
This is the implementation of the String Translator, which provides services for internationalization of messages to all services running inside the JBI environment.
author:
   Sun Microsystems, Inc.


Field Summary
final public static  StringRESOURCE_BUNDLE_NAME
     Unqualified name for resource bundles.

Constructor Summary
 StringTranslator(String packageName, ClassLoader classLoader)
     Constructor.

Method Summary
public  StringgetString(String key)
     Get a localized string using the specified resource key.
Parameters:
  key - - the key to the localized string in the resource bundle.
public  StringgetString(String key, Object insert1)
     Get a localized string using the specified resource key.
public  StringgetString(String key, Object insert1, Object insert2)
     Get a localized string using the specified resource key.
public  StringgetString(String key, Object insert1, Object insert2, Object insert3)
     Get a localized string using the specified resource key.
public  StringgetString(String key, Object insert1, Object insert2, Object insert3, Object insert4)
     Get a localized string using the specified resource key.
public  StringgetString(String key, Object insert1, Object insert2, Object insert3, Object insert4, Object insert5)
     Get a localized string using the specified resource key.
public  StringgetString(String key, Object[] inserts)
     Get a localized string using the specified resource key.
public  StringstackTraceToString(Throwable exception)
     Return an exception's stack trace as a String.

Field Detail
RESOURCE_BUNDLE_NAME
final public static String RESOURCE_BUNDLE_NAME(Code)
Unqualified name for resource bundles.




Constructor Detail
StringTranslator
StringTranslator(String packageName, ClassLoader classLoader)(Code)
Constructor. This loads the Resource Bundle for the current locale, and if the current locale is not Locale.US, it loads the Resource Bundle for Locale.US and stores it as the backup for string lookup.
Parameters:
  packageName - - the name of the package that contains the resourcebundle.
Parameters:
  classLoader - - the class loader to be used for loading the resourcebundle. If this parameter is null, the current class loader is used.




Method Detail
getString
public String getString(String key)(Code)
Get a localized string using the specified resource key.
Parameters:
  key - - the key to the localized string in the resource bundle. the localized string.



getString
public String getString(String key, Object insert1)(Code)
Get a localized string using the specified resource key. Handle one message insert.
Parameters:
  key - - the key to the localized string in the resource bundle.
Parameters:
  insert1 - - the message insert. the localized string formatted with the message insert.



getString
public String getString(String key, Object insert1, Object insert2)(Code)
Get a localized string using the specified resource key. Handle two message inserts.
Parameters:
  key - - the key to the localized string in the resource bundle.
Parameters:
  insert1 - - the first message insert.
Parameters:
  insert2 - - the second message insert. the localized string formatted with the message inserts.



getString
public String getString(String key, Object insert1, Object insert2, Object insert3)(Code)
Get a localized string using the specified resource key. Handle three message inserts.
Parameters:
  key - - the key to the localized string in the resource bundle.
Parameters:
  insert1 - - the first message insert.
Parameters:
  insert2 - - the second message insert.
Parameters:
  insert3 - - the third message insert. the localized string formatted with the message inserts.



getString
public String getString(String key, Object insert1, Object insert2, Object insert3, Object insert4)(Code)
Get a localized string using the specified resource key. Handle four message inserts.
Parameters:
  key - - the key to the localized string in the resource bundle.
Parameters:
  insert1 - - the first message insert.
Parameters:
  insert2 - - the second message insert.
Parameters:
  insert3 - - the third message insert.
Parameters:
  insert4 - - the fourth message insert. the localized string formatted with the message inserts.



getString
public String getString(String key, Object insert1, Object insert2, Object insert3, Object insert4, Object insert5)(Code)
Get a localized string using the specified resource key. Handle five message inserts.
Parameters:
  key - - the key to the localized string in the resource bundle.
Parameters:
  insert1 - - the first message insert.
Parameters:
  insert2 - - the second message insert.
Parameters:
  insert3 - - the third message insert.
Parameters:
  insert4 - - the fourth message insert.
Parameters:
  insert5 - - the fifth message insert. the localized string formatted with the message inserts.



getString
public String getString(String key, Object[] inserts)(Code)
Get a localized string using the specified resource key. Handle any number of message inserts. This method is called by all the other getString() methods in the class. The procedure for string lookup is to first look in the primary resource bundle, then in the fallback resource bundle. If the string is found in the primary, return the translated string quietly. If the string is not found in the primary but in the fallback, log a warning and return the translated string. If the string is not found in either bundle, log an error and return a message formatted with the key and insert values provided by the caller. If there is no resource bundle available, just return a message formatted with the key and insert values provided by the caller.
Parameters:
  key - - the key to the localized string in the resource bundle.
Parameters:
  inserts - - the array of message inserts. the localized string formatted with the message inserts.



stackTraceToString
public String stackTraceToString(Throwable exception)(Code)
Return an exception's stack trace as a String. If the trace cannot be produced, returns an error message in the string.
Parameters:
  exception - The exception to process. The stack trace for the exception.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.