home *** CD-ROM | disk | FTP | other *** search
- package allaire.cfide;
-
- import netscape.application.FoundationApplet;
-
- public class CFNavigationApplet extends FoundationApplet {
- public CFDirectoryTree m_treeControl;
-
- public Class classForName(String className) throws ClassNotFoundException {
- return Class.forName(className);
- }
-
- public String currentPath(String separator) {
- String path = this.m_treeControl.currentPath(separator);
- if (this.m_treeControl.m_isUNIX) {
- path = "/" + path;
- }
-
- return path;
- }
- }
-