Java Doc for LocaleBeanUtils.java in  » Library » Apache-commons-beanutils-1.8.0-BETA-src » org » apache » commons » beanutils » locale » 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 » Library » Apache commons beanutils 1.8.0 BETA src » org.apache.commons.beanutils.locale 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.commons.beanutils.BeanUtils
      org.apache.commons.beanutils.locale.LocaleBeanUtils

LocaleBeanUtils
public class LocaleBeanUtils extends BeanUtils (Code)

Utility methods for populating JavaBeans properties via reflection in a locale-dependent manner.

The implementations for these methods are provided by LocaleBeanUtilsBean. For more details see LocaleBeanUtilsBean .


author:
   Craig R. McClanahan
author:
   Ralph Schaer
author:
   Chris Audley
author:
   Rey Francois
author:
   Gregor Rayman
author:
   Yauheny Mikulski

Inner Class :protected static class Descriptor



Method Summary
protected static  Descriptorcalculate(Object bean, String name)
     Resolve any nested expression to get the actual target bean.
protected static  Objectconvert(Class type, int index, Object value, String pattern)
    
protected static  Objectconvert(Class type, int index, Object value)
    
protected static  ClassdefinePropertyType(Object target, String name, String propName)
    
public static  booleangetApplyLocalized()
    
public static  LocalegetDefaultLocale()
    
public static  StringgetIndexedProperty(Object bean, String name, String pattern)
    
public static  StringgetIndexedProperty(Object bean, String name)
     Return the value of the specified locale-sensitive indexed property of the specified bean, as a String using the default conversion pattern of the corresponding LocaleConverter .
public static  StringgetIndexedProperty(Object bean, String name, int index, String pattern)
    
public static  StringgetIndexedProperty(Object bean, String name, int index)
    
public static  StringgetMappedProperty(Object bean, String name, String key, String pattern)
    
public static  StringgetMappedProperty(Object bean, String name, String key)
    
public static  StringgetMappedProperty(Object bean, String name)
    
public static  StringgetMappedPropertyLocale(Object bean, String name, String pattern)
    
public static  StringgetNestedProperty(Object bean, String name, String pattern)
    
public static  StringgetNestedProperty(Object bean, String name)
    
public static  StringgetProperty(Object bean, String name, String pattern)
    
public static  StringgetProperty(Object bean, String name)
    
public static  StringgetSimpleProperty(Object bean, String name, String pattern)
    
public static  StringgetSimpleProperty(Object bean, String name)
    
protected static  voidinvokeSetter(Object target, String propName, String key, int index, Object newValue)
    
public static  voidsetApplyLocalized(boolean newApplyLocalized)
    
public static  voidsetDefaultLocale(Locale locale)
    
public static  voidsetProperty(Object bean, String name, Object value)
    
public static  voidsetProperty(Object bean, String name, Object value, String pattern)
    



Method Detail
calculate
protected static Descriptor calculate(Object bean, String name) throws IllegalAccessException, InvocationTargetException(Code)
Resolve any nested expression to get the actual target bean.
Parameters:
  bean - The bean
Parameters:
  name - The property name The property's descriptor
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception



convert
protected static Object convert(Class type, int index, Object value, String pattern)(Code)

Convert the specified value to the required type using the specified conversion pattern.

For more details see LocaleBeanUtilsBean


Parameters:
  type - The Java type of target property
Parameters:
  index - The indexed subscript value (if any)
Parameters:
  value - The value to be converted
Parameters:
  pattern - The conversion pattern The converted value
See Also:   LocaleBeanUtilsBean.convert(ClassintObjectString)



convert
protected static Object convert(Class type, int index, Object value)(Code)

Convert the specified value to the required type.

For more details see LocaleBeanUtilsBean


Parameters:
  type - The Java type of target property
Parameters:
  index - The indexed subscript value (if any)
Parameters:
  value - The value to be converted The converted value
See Also:   LocaleBeanUtilsBean.convert(ClassintObject)



definePropertyType
protected static Class definePropertyType(Object target, String name, String propName) throws IllegalAccessException, InvocationTargetException(Code)

Calculate the property type.

For more details see LocaleBeanUtilsBean


Parameters:
  target - The bean
Parameters:
  name - The property name
Parameters:
  propName - The Simple name of target property The property's type
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
See Also:   LocaleBeanUtilsBean.definePropertyType(ObjectStringString)



getApplyLocalized
public static boolean getApplyLocalized()(Code)

Gets whether the pattern is localized or not.

For more details see LocaleBeanUtilsBean

true if pattern is localized,otherwise false
See Also:   LocaleBeanUtilsBean.getApplyLocalized



getDefaultLocale
public static Locale getDefaultLocale()(Code)

Gets the locale used when no locale is passed.

For more details see LocaleBeanUtilsBean

the default locale
See Also:   LocaleBeanUtilsBean.getDefaultLocale



getIndexedProperty
public static String getIndexedProperty(Object bean, String name, String pattern) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)

Return the value of the specified locale-sensitive indexed property of the specified bean, as a String.

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean whose property is to be extracted
Parameters:
  name - propertyname[index] of the property valueto be extracted
Parameters:
  pattern - The conversion pattern The indexed property's value, converted to a String
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
exception:
  NoSuchMethodException - if an accessor method for thispropety cannot be found
See Also:   LocaleBeanUtilsBean.getIndexedProperty(ObjectStringString)



getIndexedProperty
public static String getIndexedProperty(Object bean, String name) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)
Return the value of the specified locale-sensitive indexed property of the specified bean, as a String using the default conversion pattern of the corresponding LocaleConverter .

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean whose property is to be extracted
Parameters:
  name - propertyname[index] of the property valueto be extracted The indexed property's value, converted to a String
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
exception:
  NoSuchMethodException - if an accessor method for thispropety cannot be found
See Also:   LocaleBeanUtilsBean.getIndexedProperty(ObjectString)



getIndexedProperty
public static String getIndexedProperty(Object bean, String name, int index, String pattern) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)

Return the value of the specified locale-sensetive indexed property of the specified bean, as a String using the specified conversion pattern.

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean whose property is to be extracted
Parameters:
  name - Simple property name of the property value to be extracted
Parameters:
  index - Index of the property value to be extracted
Parameters:
  pattern - The conversion pattern The indexed property's value, converted to a String
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
exception:
  NoSuchMethodException - if an accessor method for thispropety cannot be found
See Also:   LocaleBeanUtilsBean.getIndexedProperty(ObjectStringintString)



getIndexedProperty
public static String getIndexedProperty(Object bean, String name, int index) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)

Return the value of the specified locale-sensetive indexed property of the specified bean, as a String using the default conversion pattern of the corresponding LocaleConverter .

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean whose property is to be extracted
Parameters:
  name - Simple property name of the property value to be extracted
Parameters:
  index - Index of the property value to be extracted The indexed property's value, converted to a String
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
exception:
  NoSuchMethodException - if an accessor method for thispropety cannot be found
See Also:   LocaleBeanUtilsBean.getIndexedProperty(ObjectStringint)



getMappedProperty
public static String getMappedProperty(Object bean, String name, String key, String pattern) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)

Return the value of the specified mapped locale-sensitive property of the specified bean, as a String using the specified conversion pattern.

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean whose property is to be extracted
Parameters:
  name - Simple property name of the property value to be extracted
Parameters:
  key - Lookup key of the property value to be extracted
Parameters:
  pattern - The conversion pattern The mapped property's value, converted to a String
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
exception:
  NoSuchMethodException - if an accessor method for thispropety cannot be found
See Also:   LocaleBeanUtilsBean.getMappedProperty(ObjectStringStringString)



getMappedProperty
public static String getMappedProperty(Object bean, String name, String key) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)

Return the value of the specified mapped locale-sensitive property of the specified bean, as a String The key is specified as a method parameter and must *not* be included in the property name expression.

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean whose property is to be extracted
Parameters:
  name - Simple property name of the property value to be extracted
Parameters:
  key - Lookup key of the property value to be extracted The mapped property's value, converted to a String
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
exception:
  NoSuchMethodException - if an accessor method for thispropety cannot be found
See Also:   LocaleBeanUtilsBean.getMappedProperty(ObjectStringString)



getMappedProperty
public static String getMappedProperty(Object bean, String name) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)

Return the value of the specified locale-sensitive mapped property of the specified bean, as a String using the default conversion pattern of the corresponding LocaleConverter .

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean whose property is to be extracted
Parameters:
  name - propertyname(index) of the property valueto be extracted The mapped property's value, converted to a String
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
exception:
  NoSuchMethodException - if an accessor method for thispropety cannot be found
See Also:   LocaleBeanUtilsBean.getMappedProperty(ObjectString)



getMappedPropertyLocale
public static String getMappedPropertyLocale(Object bean, String name, String pattern) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)

Return the value of the specified locale-sensitive mapped property of the specified bean, as a String using the specified pattern.

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean whose property is to be extracted
Parameters:
  name - propertyname(index) of the property valueto be extracted
Parameters:
  pattern - The conversion pattern The mapped property's value, converted to a String
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
exception:
  NoSuchMethodException - if an accessor method for thispropety cannot be found
See Also:   LocaleBeanUtilsBean.getMappedPropertyLocale(ObjectStringString)



getNestedProperty
public static String getNestedProperty(Object bean, String name, String pattern) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)

Return the value of the (possibly nested) locale-sensitive property of the specified name, for the specified bean, as a String using the specified pattern.

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean whose property is to be extracted
Parameters:
  name - Possibly nested name of the property to be extracted
Parameters:
  pattern - The conversion pattern The nested property's value, converted to a String
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
exception:
  NoSuchMethodException - if an accessor method for thispropety cannot be found
See Also:   LocaleBeanUtilsBean.getNestedProperty(ObjectStringString)



getNestedProperty
public static String getNestedProperty(Object bean, String name) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)

Return the value of the (possibly nested) locale-sensitive property of the specified name.

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean whose property is to be extracted
Parameters:
  name - Possibly nested name of the property to be extracted The nested property's value, converted to a String
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
exception:
  NoSuchMethodException - if an accessor method for thispropety cannot be found
See Also:   LocaleBeanUtilsBean.getNestedProperty(ObjectString)



getProperty
public static String getProperty(Object bean, String name, String pattern) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)

Return the value of the specified locale-sensitive property of the specified bean.

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean whose property is to be extracted
Parameters:
  name - Possibly indexed and/or nested name of the propertyto be extracted
Parameters:
  pattern - The conversion pattern The nested property's value, converted to a String
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
exception:
  NoSuchMethodException - if an accessor method for thispropety cannot be found
See Also:   LocaleBeanUtilsBean.getProperty(ObjectStringString)



getProperty
public static String getProperty(Object bean, String name) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)

Return the value of the specified locale-sensitive property of the specified bean.

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean whose property is to be extracted
Parameters:
  name - Possibly indexed and/or nested name of the propertyto be extracted The property's value, converted to a String
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
exception:
  NoSuchMethodException - if an accessor method for thispropety cannot be found
See Also:   LocaleBeanUtilsBean.getProperty(ObjectString)



getSimpleProperty
public static String getSimpleProperty(Object bean, String name, String pattern) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)

Return the value of the specified simple locale-sensitive property of the specified bean, converted to a String using the specified conversion pattern.

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean whose property is to be extracted
Parameters:
  name - Name of the property to be extracted
Parameters:
  pattern - The conversion pattern The property's value, converted to a String
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
exception:
  NoSuchMethodException - if an accessor method for thispropety cannot be found
See Also:   LocaleBeanUtilsBean.getSimpleProperty(ObjectStringString)



getSimpleProperty
public static String getSimpleProperty(Object bean, String name) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)

Return the value of the specified simple locale-sensitive property of the specified bean, converted to a String using the default conversion pattern of the corresponding LocaleConverter .

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean whose property is to be extracted
Parameters:
  name - Name of the property to be extracted The property's value, converted to a String
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
exception:
  NoSuchMethodException - if an accessor method for thispropety cannot be found
See Also:   LocaleBeanUtilsBean.getSimpleProperty(ObjectString)



invokeSetter
protected static void invokeSetter(Object target, String propName, String key, int index, Object newValue) throws IllegalAccessException, InvocationTargetException(Code)

Invoke the setter method.

For more details see LocaleBeanUtilsBean


Parameters:
  target - The bean
Parameters:
  propName - The Simple name of target property
Parameters:
  key - The Mapped key value (if any)
Parameters:
  index - The indexed subscript value (if any)
Parameters:
  newValue - The value to be set
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
See Also:   LocaleBeanUtilsBean.invokeSetter(ObjectStringStringintObject)



setApplyLocalized
public static void setApplyLocalized(boolean newApplyLocalized)(Code)

Sets whether the pattern is localized or not.

For more details see LocaleBeanUtilsBean


Parameters:
  newApplyLocalized - true if pattern is localized,otherwise false
See Also:   LocaleBeanUtilsBean.setApplyLocalized(boolean)



setDefaultLocale
public static void setDefaultLocale(Locale locale)(Code)

Sets the locale used when no locale is passed.

For more details see LocaleBeanUtilsBean


Parameters:
  locale - the default locale
See Also:   LocaleBeanUtilsBean.setDefaultLocale(Locale)



setProperty
public static void setProperty(Object bean, String name, Object value) throws IllegalAccessException, InvocationTargetException(Code)

Set the specified locale-sensitive property value, performing type conversions as required to conform to the type of the destination property using the default conversion pattern of the corresponding LocaleConverter .

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean on which setting is to be performed
Parameters:
  name - Property name (can be nested/indexed/mapped/combo)
Parameters:
  value - Value to be set
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
See Also:   LocaleBeanUtilsBean.setProperty(ObjectStringObject)



setProperty
public static void setProperty(Object bean, String name, Object value, String pattern) throws IllegalAccessException, InvocationTargetException(Code)

Set the specified locale-sensitive property value, performing type conversions as required to conform to the type of the destination property using the specified conversion pattern.

For more details see LocaleBeanUtilsBean


Parameters:
  bean - Bean on which setting is to be performed
Parameters:
  name - Property name (can be nested/indexed/mapped/combo)
Parameters:
  value - Value to be set
Parameters:
  pattern - The conversion pattern
exception:
  IllegalAccessException - if the caller does not haveaccess to the property accessor method
exception:
  InvocationTargetException - if the property accessor methodthrows an exception
See Also:   LocaleBeanUtilsBean.setProperty(ObjectStringObjectString)



Methods inherited from org.apache.commons.beanutils.BeanUtils
public static Object cloneBean(Object bean) throws IllegalAccessException, InstantiationException, InvocationTargetException, NoSuchMethodException(Code)(Java Doc)
public static void copyProperties(Object dest, Object orig) throws IllegalAccessException, InvocationTargetException(Code)(Java Doc)
public static void copyProperty(Object bean, String name, Object value) throws IllegalAccessException, InvocationTargetException(Code)(Java Doc)
public static Map describe(Object bean) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)(Java Doc)
public static String[] getArrayProperty(Object bean, String name) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)(Java Doc)
public static int getDebug()(Code)(Java Doc)
public static String getIndexedProperty(Object bean, String name) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)(Java Doc)
public static String getIndexedProperty(Object bean, String name, int index) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)(Java Doc)
public static String getMappedProperty(Object bean, String name) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)(Java Doc)
public static String getMappedProperty(Object bean, String name, String key) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)(Java Doc)
public static String getNestedProperty(Object bean, String name) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)(Java Doc)
public static String getProperty(Object bean, String name) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)(Java Doc)
public static String getSimpleProperty(Object bean, String name) throws IllegalAccessException, InvocationTargetException, NoSuchMethodException(Code)(Java Doc)
public static boolean initCause(Throwable throwable, Throwable cause)(Code)(Java Doc)
public static void populate(Object bean, Map properties) throws IllegalAccessException, InvocationTargetException(Code)(Java Doc)
public static void setDebug(int newDebug)(Code)(Java Doc)
public static void setProperty(Object bean, String name, Object value) throws IllegalAccessException, InvocationTargetException(Code)(Java Doc)

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.