Java Doc for MuleClient.java in  » ESB » mule » org » mule » module » client » 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 » mule » org.mule.module.client 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.mule.module.client.MuleClient

MuleClient
public class MuleClient implements Disposable(Code)
MuleClient is a simple interface for Mule clients to send and receive events from a Mule Server. In most Mule applications events are triggered by some external occurrence such as a message being received on a queue or file being copied to a directory. The Mule client allows the user to send and receive events programmatically through its Api.

The client defines a EndpointURI which is used to determine how a message is sent of received. The url defines the protocol, the endpointUri destination of the message and optionally the endpoint to use when dispatching the event. For example:

vm://my.object dispatches to a my.object destination using the VM endpoint. There needs to be a global VM endpoint registered for the message to be sent.

jms://jmsProvider/orders.topic dispatches a JMS message via the globally registered jmsProvider over a topic destination called orders.topic.

jms://orders.topic is equivalent to the above except that the endpoint is determined by the protocol, so the first JMS endpoint is used.

Note that there must be a configured MuleManager for this client to work. It will use the one available using muleContext
See Also:   org.mule.endpoint.MuleEndpointURI



Field Summary
final protected static  Loglogger
    

Constructor Summary
public  MuleClient()
     Creates a default Mule client that will use the default serverEndpoint to connect to a remote server instance.
public  MuleClient(boolean startContext)
    
public  MuleClient(MuleContext context)
    
public  MuleClient(String configResources)
    
public  MuleClient(String user, String password)
    
public  MuleClient(String configResources, ConfigurationBuilder builder)
    
public  MuleClient(String configResources, ConfigurationBuilder builder, String user, String password)
    

Method Summary
public  voiddispatch(String url, Object payload, Map messageProperties)
     Dispatches an event asynchronously to a endpointUri via a mule server.
public  voiddispatch(String url, MuleMessage message)
     Dispatches an event asynchronously to a endpointUri via a mule server.
public  voiddispatchDirect(String component, Object payload, Map messageProperties)
     dispatches an event asynchronously to the components
Parameters:
  component - the name of the Mule components to dispatch to
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload.
public  voiddispatchDirect(String componentName, MuleMessage message)
    
public  voiddispose()
     Will dispose the MuleManager instance *IF* a new instance was created for this client.
public  MuleConfigurationgetConfiguration()
    
protected  ImmutableEndpointgetDefaultClientEndpoint(Service service, Object payload)
    
protected  MuleEventgetEvent(MuleMessage message, String uri, boolean synchronous, boolean streaming)
    
protected  InboundEndpointgetInboundEndpoint(String uri)
    
public  MuleContextgetMuleContext()
    
protected  OutboundEndpointgetOutboundEndpoint(String uri)
    
public  ObjectgetProperty(String key)
    
public  RemoteDispatchergetRemoteDispatcher(String serverEndpoint)
    
public  RemoteDispatchergetRemoteDispatcher(String serverEndpoint, String user, String password)
    
public  voidregisterComponent(Object component, String name, EndpointURI listenerEndpoint)
     Registers a java object as a Umo pcomponent that listens for events on the given url.
public  voidregisterComponent(Object component, String name, MuleEndpointURI listenerEndpoint, MuleEndpointURI sendEndpoint)
     Registers a java object as a Umo pcomponent that listens for and sends events on the given urls.
public  MuleMessagerequest(String url, long timeout)
    
public  MuleMessagerequest(String url, String transformers, long timeout)
    
public  MuleMessagerequest(String url, List transformers, long timeout)
    
public  MuleMessagesend(String url, Object payload, Map messageProperties)
     Sends an event synchronously to a endpointUri via a mule server and a resulting message is returned.
Parameters:
  url - the Mule url used to determine the destination and transport of themessage
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload.
public  MuleMessagesend(String url, MuleMessage message)
     Sends an event synchronously to a endpointUri via a mule server and a resulting message is returned.
public  MuleMessagesend(String url, Object payload, Map messageProperties, int timeout)
     Sends an event synchronously to a endpointUri via a mule server and a resulting message is returned.
Parameters:
  url - the Mule url used to determine the destination and transport of themessage
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload.
public  MuleMessagesend(String url, MuleMessage message, int timeout)
     Sends an event synchronously to a endpointUri via a mule server and a resulting message is returned.
public  FutureMessageResultsendAsync(String url, Object payload, Map messageProperties)
     sends an event request to a Url, making the result of the event trigger available as a Future result that can be accessed later by client code.
Parameters:
  url - the url to make a request on
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload.
public  FutureMessageResultsendAsync(String url, MuleMessage message)
     sends an event request to a Url, making the result of the event trigger available as a Future result that can be accessed later by client code.
public  FutureMessageResultsendAsync(String url, Object payload, Map messageProperties, int timeout)
     sends an event request to a Url, making the result of the event trigger available as a Future result that can be accessed later by client code.
Parameters:
  url - the url to make a request on
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload.
public  FutureMessageResultsendAsync(String url, MuleMessage message, int timeout)
     sends an event request to a Url, making the result of the event trigger available as a Future result that can be accessed later by client code.
public  MuleMessagesendDirect(String component, String transformers, Object payload, Map messageProperties)
     sends an event synchronously to a components
Parameters:
  component - the name of the Mule components to send to
Parameters:
  transformers - a comma separated list of transformers to apply to theresult message
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload.
public  MuleMessagesendDirect(String componentName, String transformers, MuleMessage message)
    
public  FutureMessageResultsendDirectAsync(String component, String transformers, Object payload, Map messageProperties)
     sends an event to a components on a local Mule instance, while making the result of the event trigger available as a Future result that can be accessed later by client code.
public  FutureMessageResultsendDirectAsync(String component, String transformers, MuleMessage message)
     sends an event to a components on a local Mule instance, while making the result of the event trigger available as a Future result that can be accessed later by client code.
public  voidsendNoReceive(String url, Object payload, Map messageProperties)
     Sends an event synchronously to a endpointUri via a mule server without waiting for the result.
Parameters:
  url - the Mule url used to determine the destination and transport of themessage
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload.
public  voidsetProperty(String key, Object value)
    
public  voidunregisterComponent(String name)
     Unregisters a previously register components.

Field Detail
logger
final protected static Log logger(Code)
logger used by this class




Constructor Detail
MuleClient
public MuleClient() throws MuleException(Code)
Creates a default Mule client that will use the default serverEndpoint to connect to a remote server instance.
throws:
  MuleException -



MuleClient
public MuleClient(boolean startContext) throws MuleException(Code)



MuleClient
public MuleClient(MuleContext context) throws MuleException(Code)



MuleClient
public MuleClient(String configResources) throws MuleException(Code)
Configures a Mule CLient instance using the the default MuleXmlConfigurationBuilder to parse the config resources
Parameters:
  configResources - a config resource location to configure this clientwith
throws:
  ConfigurationException - is there is a MuleManager instance alreadyrunning in this JVM or if the builder fails to configure theManager



MuleClient
public MuleClient(String user, String password) throws MuleException(Code)
Configures a new MuleClient and either uses an existing Manager running in this JVM or creates a new empty muleContext
Parameters:
  user - the username to use when connecting to a remote server instance
Parameters:
  password - the password for the user
throws:
  MuleException -



MuleClient
public MuleClient(String configResources, ConfigurationBuilder builder) throws ConfigurationException, InitialisationException(Code)
Configures a Mule Client instance
Parameters:
  configResources - a config resource location to configure this clientwith
Parameters:
  builder - the configuration builder to use
throws:
  ConfigurationException - is there is a MuleManager instance alreadyrunning in this JVM or if the builder fails to configure theManager
throws:
  InitialisationException -



MuleClient
public MuleClient(String configResources, ConfigurationBuilder builder, String user, String password) throws ConfigurationException, InitialisationException(Code)
Configures a Mule Client instance
Parameters:
  configResources - a config resource location to configure this clientwith
Parameters:
  builder - the configuration builder to use
Parameters:
  user - the username to use when connecting to a remote server instance
Parameters:
  password - the password for the user
throws:
  ConfigurationException - is there is a MuleManager instance alreadyrunning in this JVM or if the builder fails to configure theManager
throws:
  InitialisationException -




Method Detail
dispatch
public void dispatch(String url, Object payload, Map messageProperties) throws MuleException(Code)
Dispatches an event asynchronously to a endpointUri via a mule server. the Url determines where to dispathc the event to, this can be in the form of
Parameters:
  url - the Mule url used to determine the destination and transport of themessage
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload. Inthe case of Jms you could set the JMSReplyTo property in theseproperties.
throws:
  org.mule.api.MuleException -



dispatch
public void dispatch(String url, MuleMessage message) throws MuleException(Code)
Dispatches an event asynchronously to a endpointUri via a mule server. the Url determines where to dispathc the event to, this can be in the form of
Parameters:
  url - the Mule url used to determine the destination and transport of themessage
Parameters:
  message - the message to send
throws:
  org.mule.api.MuleException -



dispatchDirect
public void dispatchDirect(String component, Object payload, Map messageProperties) throws MuleException(Code)
dispatches an event asynchronously to the components
Parameters:
  component - the name of the Mule components to dispatch to
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload. asnull
throws:
  org.mule.api.MuleException - if the dispatch fails or the components ortransfromers cannot be found



dispatchDirect
public void dispatchDirect(String componentName, MuleMessage message) throws MuleException(Code)
dispatches an event asynchronously to the components
Parameters:
  componentName - the name of the Mule components to dispatch to
Parameters:
  message - the message to send
throws:
  org.mule.api.MuleException - if the dispatch fails or the components ortransfromers cannot be found



dispose
public void dispose()(Code)
Will dispose the MuleManager instance *IF* a new instance was created for this client. Otherwise this method only cleans up resources no longer needed



getConfiguration
public MuleConfiguration getConfiguration()(Code)



getDefaultClientEndpoint
protected ImmutableEndpoint getDefaultClientEndpoint(Service service, Object payload) throws MuleException(Code)



getEvent
protected MuleEvent getEvent(MuleMessage message, String uri, boolean synchronous, boolean streaming) throws MuleException(Code)
Packages a mule event for the current request
Parameters:
  message - the event payload
Parameters:
  uri - the destination endpointUri
Parameters:
  synchronous - whether the event will be synchronously processed
Parameters:
  streaming - the MuleEvent
throws:
  MuleException -



getInboundEndpoint
protected InboundEndpoint getInboundEndpoint(String uri) throws MuleException(Code)



getMuleContext
public MuleContext getMuleContext()(Code)
Overriding methods may want to return a custom muleContext here the UMOManager to use



getOutboundEndpoint
protected OutboundEndpoint getOutboundEndpoint(String uri) throws MuleException(Code)



getProperty
public Object getProperty(String key)(Code)



getRemoteDispatcher
public RemoteDispatcher getRemoteDispatcher(String serverEndpoint) throws MuleException(Code)



getRemoteDispatcher
public RemoteDispatcher getRemoteDispatcher(String serverEndpoint, String user, String password) throws MuleException(Code)



registerComponent
public void registerComponent(Object component, String name, EndpointURI listenerEndpoint) throws MuleException(Code)
Registers a java object as a Umo pcomponent that listens for events on the given url. By default the ThreadingProfile for the components will be set so that there will only be one thread of execution.
Parameters:
  component - any java object, Mule will it's endpointUri discovery todetermine which event to invoke based on the evnet payload type
Parameters:
  name - The identifying name of the components. This can be used to laterunregister it
Parameters:
  listenerEndpoint - The url endpointUri to listen to
throws:
  MuleException -



registerComponent
public void registerComponent(Object component, String name, MuleEndpointURI listenerEndpoint, MuleEndpointURI sendEndpoint) throws MuleException(Code)
Registers a java object as a Umo pcomponent that listens for and sends events on the given urls. By default the ThreadingProfile for the components will be set so that there will only be one thread of execution.
Parameters:
  component - any java object, Mule will it's endpointUri discovery todetermine which event to invoke based on the evnet payload type
Parameters:
  name - The identifying name of the components. This can be used to laterunregister it
Parameters:
  listenerEndpoint - The url endpointUri to listen to
Parameters:
  sendEndpoint - The url endpointUri to dispatch to
throws:
  MuleException -



request
public MuleMessage request(String url, long timeout) throws MuleException(Code)
Will receive an event from an endpointUri determined by the url
Parameters:
  url - the Mule url used to determine the destination and transport of themessage
Parameters:
  timeout - how long to block waiting to receive the event, if set to 0 thereceive will not wait at all and if set to -1 the receive will waitforever the message received or null if no message was received
throws:
  org.mule.api.MuleException -



request
public MuleMessage request(String url, String transformers, long timeout) throws MuleException(Code)
Will receive an event from an endpointUri determined by the url
Parameters:
  url - the Mule url used to determine the destination and transport of themessage
Parameters:
  transformers - A comma separated list of transformers used to apply tothe result message
Parameters:
  timeout - how long to block waiting to receive the event, if set to 0 thereceive will not wait at all and if set to -1 the receive will waitforever the message received or null if no message was received
throws:
  org.mule.api.MuleException -



request
public MuleMessage request(String url, List transformers, long timeout) throws MuleException(Code)
Will receive an event from an endpointUri determined by the url
Parameters:
  url - the Mule url used to determine the destination and transport of themessage
Parameters:
  transformers - Transformers used to modify the result message
Parameters:
  timeout - how long to block waiting to receive the event, if set to 0 thereceive will not wait at all and if set to -1 the receive will waitforever the message received or null if no message was received
throws:
  org.mule.api.MuleException -



send
public MuleMessage send(String url, Object payload, Map messageProperties) throws MuleException(Code)
Sends an event synchronously to a endpointUri via a mule server and a resulting message is returned.
Parameters:
  url - the Mule url used to determine the destination and transport of themessage
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload. Inthe case of Jms you could set the JMSReplyTo property in theseproperties. A return message, this could be null if the the components invokedexplicitly sets a return as null
throws:
  org.mule.api.MuleException -



send
public MuleMessage send(String url, MuleMessage message) throws MuleException(Code)
Sends an event synchronously to a endpointUri via a mule server and a resulting message is returned.
Parameters:
  url - the Mule url used to determine the destination and transport of themessage
Parameters:
  message - the Message for the event A return message, this could be null if the the components invokedexplicitly sets a return as null
throws:
  org.mule.api.MuleException -



send
public MuleMessage send(String url, Object payload, Map messageProperties, int timeout) throws MuleException(Code)
Sends an event synchronously to a endpointUri via a mule server and a resulting message is returned.
Parameters:
  url - the Mule url used to determine the destination and transport of themessage
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload. Inthe case of Jms you could set the JMSReplyTo property in theseproperties.
Parameters:
  timeout - The time in milliseconds the the call should block waiting fora response A return message, this could be null if the the components invokedexplicitly sets a return as null
throws:
  org.mule.api.MuleException -



send
public MuleMessage send(String url, MuleMessage message, int timeout) throws MuleException(Code)
Sends an event synchronously to a endpointUri via a mule server and a resulting message is returned.
Parameters:
  url - the Mule url used to determine the destination and transport of themessage
Parameters:
  message - The message to send
Parameters:
  timeout - The time in milliseconds the the call should block waiting fora response A return message, this could be null if the the components invokedexplicitly sets a return as null
throws:
  org.mule.api.MuleException -



sendAsync
public FutureMessageResult sendAsync(String url, Object payload, Map messageProperties) throws MuleException(Code)
sends an event request to a Url, making the result of the event trigger available as a Future result that can be accessed later by client code.
Parameters:
  url - the url to make a request on
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload. asnull the result message if any of the invocation
throws:
  org.mule.api.MuleException - if the dispatch fails or the components ortransfromers cannot be found



sendAsync
public FutureMessageResult sendAsync(String url, MuleMessage message) throws MuleException(Code)
sends an event request to a Url, making the result of the event trigger available as a Future result that can be accessed later by client code.
Parameters:
  url - the url to make a request on
Parameters:
  message - the message to send the result message if any of the invocation
throws:
  org.mule.api.MuleException - if the dispatch fails or the components ortransfromers cannot be found



sendAsync
public FutureMessageResult sendAsync(String url, Object payload, Map messageProperties, int timeout) throws MuleException(Code)
sends an event request to a Url, making the result of the event trigger available as a Future result that can be accessed later by client code.
Parameters:
  url - the url to make a request on
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload. asnull
Parameters:
  timeout - how long to block in milliseconds waiting for a result the result message if any of the invocation
throws:
  org.mule.api.MuleException - if the dispatch fails or the components ortransfromers cannot be found



sendAsync
public FutureMessageResult sendAsync(String url, MuleMessage message, int timeout) throws MuleException(Code)
sends an event request to a Url, making the result of the event trigger available as a Future result that can be accessed later by client code.
Parameters:
  url - the url to make a request on
Parameters:
  message - the message to send
Parameters:
  timeout - how long to block in milliseconds waiting for a result the result message if any of the invocation
throws:
  org.mule.api.MuleException - if the dispatch fails or the components ortransfromers cannot be found



sendDirect
public MuleMessage sendDirect(String component, String transformers, Object payload, Map messageProperties) throws MuleException(Code)
sends an event synchronously to a components
Parameters:
  component - the name of the Mule components to send to
Parameters:
  transformers - a comma separated list of transformers to apply to theresult message
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload. asnull the result message if any of the invocation
throws:
  org.mule.api.MuleException - if the dispatch fails or the components ortransfromers cannot be found



sendDirect
public MuleMessage sendDirect(String componentName, String transformers, MuleMessage message) throws MuleException(Code)
sends an event synchronously to a components
Parameters:
  componentName - the name of the Mule components to send to
Parameters:
  transformers - a comma separated list of transformers to apply to theresult message
Parameters:
  message - the message to send the result message if any of the invocation
throws:
  org.mule.api.MuleException - if the dispatch fails or the components ortransfromers cannot be found



sendDirectAsync
public FutureMessageResult sendDirectAsync(String component, String transformers, Object payload, Map messageProperties) throws MuleException(Code)
sends an event to a components on a local Mule instance, while making the result of the event trigger available as a Future result that can be accessed later by client code. If forwardDirectRequests flag s set and the components is not found on the local Mule instance it will forward to a remote server. Users can endpoint a url to a remote Mule server in the constructor of a Mule client, by default the default Mule server url tcp://localhost:60504 is used.
Parameters:
  component - the name of the Mule components to send to
Parameters:
  transformers - a comma separated list of transformers to apply to theresult message
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload. asnull the result message if any of the invocation
throws:
  org.mule.api.MuleException - if the dispatch fails or the components ortransfromers cannot be found



sendDirectAsync
public FutureMessageResult sendDirectAsync(String component, String transformers, MuleMessage message) throws MuleException(Code)
sends an event to a components on a local Mule instance, while making the result of the event trigger available as a Future result that can be accessed later by client code. If forwardDirectRequests flag s set and the components is not found on the local Mule instance it will forward to a remote server. Users can endpoint a url to a remote Mule server in the constructor of a Mule client, by default the default Mule server url tcp://localhost:60504 is used.
Parameters:
  component - the name of the Mule components to send to
Parameters:
  transformers - a comma separated list of transformers to apply to theresult message
Parameters:
  message - the message to send the result message if any of the invocation
throws:
  org.mule.api.MuleException - if the dispatch fails or the components ortransfromers cannot be found



sendNoReceive
public void sendNoReceive(String url, Object payload, Map messageProperties) throws MuleException(Code)
Sends an event synchronously to a endpointUri via a mule server without waiting for the result.
Parameters:
  url - the Mule url used to determine the destination and transport of themessage
Parameters:
  payload - the object that is the payload of the event
Parameters:
  messageProperties - any properties to be associated with the payload. Inthe case of Jms you could set the JMSReplyTo property in theseproperties.
throws:
  org.mule.api.MuleException -



setProperty
public void setProperty(String key, Object value)(Code)



unregisterComponent
public void unregisterComponent(String name) throws MuleException(Code)
Unregisters a previously register components. This will also unregister any listeners for the components Calling this method is equivilent to calling Model.unregisterComponent(..)
Parameters:
  name - the name of the componet to unregister
throws:
  MuleException - if unregistering the components fails, i.e. Theunderlying transport fails to unregister a listener. If thecomponents does not exist, this method should not throw anexception.
See Also:   org.mule.api.model.Model



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.