1 /*
2  * xTreePathProvider.java
3  *
4  * Created on 12. Dezember 2006, 13:30
5  *
6  * To change this template, choose Tools | Template Manager
7  * and open the template in the editor.
8  */
9 
10 /**
11  *
12  * @author bc93774
13  */
14 public interface XTreePathProvider {
15 
16     public XUnoNode getLastPathComponent();
17 
18     public XUnoNode getPathComponent(int i);
19 
20     public int getPathCount();
21 
22     public XTreePathProvider getParentPath();
23 
24     public XTreePathProvider pathByAddingChild(XUnoNode _oUnoNode);
25 }
26