All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gr.demokritos.iit.jinsect.storage.IFileLoader Maven / Gradle / Ivy

Go to download

The JINSECT toolkit is a Java-based toolkit and library that supports and demonstrates the use of n-gram graphs within Natural Language Processing applications, ranging from summarization and summary evaluation to text classification and indexing.

The newest version!
/*
 * IFileLoader.java
 *
 * Created on May 7, 2008, 10:16 AM
 *
 */

package gr.demokritos.iit.jinsect.storage;

/** This interface describes all classes that can load a file, given its
 * identifier.
 *
 * @author ggianna
 */
public interface IFileLoader {
    /** Loads the file and represents it using type . 
     *@param The identifier of the file.
     *@return The representation of the file.
     */
    public Type loadFile(String sID);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy