xref: /AOO41X/main/toolkit/test/accessibility/StringNode.java (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir import com.sun.star.lang.IndexOutOfBoundsException;
2*cdf0e10cSrcweir 
3*cdf0e10cSrcweir /**
4*cdf0e10cSrcweir     Base class for all tree nodes.
5*cdf0e10cSrcweir  */
6*cdf0e10cSrcweir class StringNode
7*cdf0e10cSrcweir     extends AccessibleTreeNode
8*cdf0e10cSrcweir {
9*cdf0e10cSrcweir     public StringNode (String aDisplayObject, AccessibleTreeNode aParent)
10*cdf0e10cSrcweir     {
11*cdf0e10cSrcweir         super (aDisplayObject, aParent);
12*cdf0e10cSrcweir     }
13*cdf0e10cSrcweir }
14