summaryrefslogtreecommitdiff
path: root/odk/examples/java/Inspector/XTreePathProvider.java
blob: 5067bad409c1f70e282dbb3534e9483b16b7cfa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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);
}