1 package org.treetank.access.conf; 2 3 import java.io.File; 4 5 /** 6 * Interface for convinient accessing of paths within Storage-/ and ResourceConfigurations. 7 * 8 * @author Sebastian Graf, University of Konstanz 9 * 10 */ 11 public interface IConfigurationPath { 12 /** Getting the File represention of a path. */ 13 File getFile(); 14 15 /** Check if the path is a folder. */ 16 boolean isFolder(); 17 }