summaryrefslogtreecommitdiff
path: root/odk/examples/java/Inspector/XTreePathProvider.java
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/java/Inspector/XTreePathProvider.java')
-rw-r--r--odk/examples/java/Inspector/XTreePathProvider.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/odk/examples/java/Inspector/XTreePathProvider.java b/odk/examples/java/Inspector/XTreePathProvider.java
new file mode 100644
index 000000000000..5067bad409c1
--- /dev/null
+++ b/odk/examples/java/Inspector/XTreePathProvider.java
@@ -0,0 +1,25 @@
+/*
+ * xTreePathProvider.java
+ *
+ * Created on 12. Dezember 2006, 13:30
+ *
+ * To change this template, choose Tools | Template Manager
+ * and open the template in the editor.
+ */
+
+/**
+ *
+ * @author bc93774
+ */
+public interface XTreePathProvider {
+
+ public XUnoNode getLastPathComponent();
+
+ public XUnoNode getPathComponent(int i);
+
+ public int getPathCount();
+
+ public XTreePathProvider getParentPath();
+
+ public XTreePathProvider pathByAddingChild(XUnoNode _oUnoNode);
+}