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
This commit is contained in:
Rüdiger Timm 2007-04-04 08:24:48 +00:00
parent 3d854461fb
commit 50906dba57

View file

@ -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();
}