diff options
author | Rüdiger Timm <rt@openoffice.org> | 2007-04-04 08:24:48 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2007-04-04 08:24:48 +0000 |
commit | 50906dba578c0b93cd92bd62d86ad54ceb4f10d7 (patch) | |
tree | ca52646d30854243f6d6e5ad456312214df60f72 /odk/examples/java | |
parent | 3d854461fb8e4c0bf40076bb188c938f7d68fc4f (diff) |
INTEGRATION: CWS sdkinspector3 (1.2.6); FILE MERGED
2007/02/22 16:45:22 bc 1.2.6.2: #i74649#methodNode.isinvoked() method embedded
2007/02/20 11:18:00 bc 1.2.6.1: #i74649#several changes
Diffstat (limited to 'odk/examples/java')
-rw-r--r-- | odk/examples/java/Inspector/XUnoMethodNode.java | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/odk/examples/java/Inspector/XUnoMethodNode.java b/odk/examples/java/Inspector/XUnoMethodNode.java index baeb6de85c29..a57003d75a57 100644 --- a/odk/examples/java/Inspector/XUnoMethodNode.java +++ b/odk/examples/java/Inspector/XUnoMethodNode.java @@ -2,9 +2,9 @@ * * $RCSfile: XUnoMethodNode.java,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: rt $ $Date: 2007-01-30 08:16:47 $ + * last change: $Author: rt $ $Date: 2007-04-04 09:24:48 $ * * The Contents of this file are made available subject to the terms of * the BSD license. @@ -53,6 +53,8 @@ public interface XUnoMethodNode extends XUnoNode { public Object invoke(Object _oUnoObject, Object[] _oParameters) throws com.sun.star.uno.Exception; + public boolean isInvokable(); + public boolean hasParameters(); public Object[] getLastParameterObjects(); @@ -65,6 +67,8 @@ public interface XUnoMethodNode extends XUnoNode { public Vector getMethodObjects(); + public boolean isFoldable(); + public String getStandardMethodDescription(); } |