Show ResultFile.java syntax highlighted
/*
* Copyright (c) 2005
* Helsinki Institute of Physics
* see LICENSE file for details
*
* ResultFile.java
* Created on 4.8.2005
*/
package fi.hip.gb.portlet.results;
/**
* Represents a result file.
*
* @author Antti Ahvenlampi
* @version $Id: ResultFile.java 476 2005-08-15 15:20:12Z ahvenlam $
*/
public interface ResultFile {
/**
* @return name of the file
*/
public String getName();
/**
* @return URL to the actual file
*/
public String getURL();
/**
* @return size of the file
*/
public String getSize();
/**
* @return description of what the file contains
*/
public String getDescription();
}
See more files for this project here