org.kde.koala
public class DCOPObjectProxy extends Object implements QtSupport
See Also: DCOPObject DCOPClient
UNKNOWN: You must use a proxy if you want to dispatch method calls for object IDs which don't have (yet) a corresponding DCOPObject.
Constructor Summary | |
---|---|
protected | DCOPObjectProxy(Class dummy) |
DCOPObjectProxy()
Creates a new proxy. |
Method Summary | |
---|---|
void | dispose() Delete the wrapped C++ instance ahead of finalize() |
protected void | finalize() Deletes the wrapped C++ instance |
boolean | isDisposed() Has the wrapped C++ instance been deleted? |
boolean | process(String arg1, String fun, byte[] data, StringBuffer replyType, byte[] replyData)
Reimplement this method to dispatch method calls.
|
UNKNOWN: Creates a new proxy.
obj.
If the first proxy returns
true
, the DCOPClient will no longer call other proxies.
The object id obj
may be empty for app-wide function calls no
associated with any object.Parameters: obj the id of the object fun is the normalized function signature. Such a signature usually looks like foobar(String,int). The return type, qualifiers like "const" etc. are not part of the signature. data the received data replyType write the reply type in this string replyData write the reply data in this array
Returns: true if successful, false otherwise. The default implementation returns always false.
UNKNOWN: Reimplement this method to dispatch method calls.