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

org.daisy.streamline.api.media.AnnotatedFile Maven / Gradle / Ivy

The newest version!
package org.daisy.streamline.api.media;

import java.io.File;
import java.nio.file.Path;


/**
 * Provides an annotated file
 * @author Joel Håkansson
 */
public interface AnnotatedFile extends FileDetails {

	/**
	 * Gets the file.
	 * @return the file
	 * @deprecated use {@link #getPath()}
	 */
	@Deprecated
	public File getFile();
	
	/**
	 * Gets the path.
	 * @return the path
	 */
	public Path getPath();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy