INTEGRATION: CWS sdkinspector3 (1.2.6); FILE MERGED

2007/02/20 18:24:47 bc 1.2.6.2: #i74649# Code with isPopupTrigger() improved
2007/02/20 11:17:57 bc 1.2.6.1: #i74649#several changes
This commit is contained in:
Rüdiger Timm 2007-04-04 08:22:07 +00:00
parent ef39e0dae6
commit 32e6e8024f
2 changed files with 9 additions and 6 deletions

View file

@ -2,9 +2,9 @@
*
* $RCSfile: SwingUnoNode.java,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: rt $ $Date: 2007-01-30 08:13:41 $
* last change: $Author: rt $ $Date: 2007-04-04 09:21:53 $
*
* The Contents of this file are made available subject to the terms of
* the BSD license.
@ -77,8 +77,8 @@ public class SwingUnoNode extends HideableMutableTreeNode implements XUnoNode{
m_oUnoNode.setParameterObjects(_oParamObjects);
}
public void openIdlDescription() {
m_oUnoNode.openIdlDescription(getClassName());
public void openIdlDescription(String _SDKPath) {
m_oUnoNode.openIdlDescription(_SDKPath, getClassName(), getAnchor());
}
public Object[] getParameterObjects() {

View file

@ -2,9 +2,9 @@
*
* $RCSfile: SwingUnoPropertyNode.java,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: rt $ $Date: 2007-01-30 08:13:51 $
* last change: $Author: rt $ $Date: 2007-04-04 09:22:07 $
*
* The Contents of this file are made available subject to the terms of
* the BSD license.
@ -82,6 +82,9 @@ public class SwingUnoPropertyNode extends SwingUnoNode implements XUnoPropertyNo
return sClassName;
}
public String getAnchor(){
return m_oUnoPropertyNode.getAnchor();
}
public int getPropertyNodeType(){
return m_oUnoPropertyNode.getPropertyNodeType();