1 11 package org.eclipse.core.filesystem.provider; 12 13 import org.eclipse.core.filesystem.*; 14 15 24 public abstract class FileTree implements IFileTree { 25 26 29 protected IFileStore treeRoot; 30 31 35 public FileTree(IFileStore treeRoot) { 36 this.treeRoot = treeRoot; 37 } 38 39 public IFileStore getTreeRoot() { 40 return treeRoot; 41 } 42 43 46 public abstract IFileInfo[] getChildInfos(IFileStore store); 47 48 51 public abstract IFileInfo getFileInfo(IFileStore store); 52 53 56 public abstract IFileStore[] getChildStores(IFileStore store); 57 58 } 59 | Popular Tags |