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

com.dragome.commons.compiler.classpath.ClasspathFile Maven / Gradle / Ivy

The newest version!
package com.dragome.commons.compiler.classpath;

import java.io.InputStream;

public interface ClasspathFile
{
	String getFilename();
	InputStream openInputStream();
	long getLastModified();
	void close();
	String getPath();
	long getCRC();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy