summaryrefslogtreecommitdiff
path: root/odk/examples/java/Inspector/XTreePathProvider.java
blob: 8a2f1ba58b596b0fb089a91319d95b1320b93d33 (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);    
}