From fd2cf3dc7cd9c73070fa4d70c8ca99c9fc1ce135 Mon Sep 17 00:00:00 2001
From: Jens-Heiner Rechtien
Date: Thu, 27 Mar 2003 16:05:12 +0000
Subject: MWS_SRX644: migrate branch mws_srx644 -> HEAD
---
.../test/accessibility/AccessibleActionNode.java | 48 ----------------------
1 file changed, 48 deletions(-)
delete mode 100644 toolkit/test/accessibility/AccessibleActionNode.java
(limited to 'toolkit/test/accessibility/AccessibleActionNode.java')
diff --git a/toolkit/test/accessibility/AccessibleActionNode.java b/toolkit/test/accessibility/AccessibleActionNode.java
deleted file mode 100644
index 9f5ed1742167..000000000000
--- a/toolkit/test/accessibility/AccessibleActionNode.java
+++ /dev/null
@@ -1,48 +0,0 @@
-import javax.swing.JOptionPane;
-import drafts.com.sun.star.accessibility.XAccessibleAction;
-
-/**
- Base class for all tree nodes.
- */
-class AccessibleActionNode
- extends StringNode
-{
- public AccessibleActionNode (String aDisplayObject,
- AccessibleTreeNode aParent,
- int nActionIndex)
- {
- super (aDisplayObject, aParent);
- mnActionIndex = nActionIndex;
- }
-
- public String[] getActions ()
- {
- return new String[] {"Perform Action"};
- }
-
- /** perform action */
- public void performAction (int nIndex)
- {
- if (nIndex != 0)
- return;
- boolean bResult = false;
- if (getParent() instanceof AccTreeNode)
- try
- {
- bResult = AccessibleActionHandler.getAction(
- (AccTreeNode)getParent()).doAccessibleAction (
- mnActionIndex);
- }
- catch (com.sun.star.lang.IndexOutOfBoundsException e)
- {
- }
-
- JOptionPane.showMessageDialog (null,
- "performed action " + mnActionIndex
- + (bResult?" with":" without") + " success",
- "Action " + mnActionIndex,
- JOptionPane.INFORMATION_MESSAGE);
- }
-
- private int mnActionIndex;
-}
--
cgit