forked from amazingfate/loongoffice
2007/01/17 19:26:43 bc 1.2.6.1: 73575# user interface encapsulated cVS: ----------------------------------------------------------------------
26 lines
487 B
Java
26 lines
487 B
Java
/*
|
|
* 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);
|
|
}
|