com.dragome.commons.compiler.classpath.ClasspathFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dragome-js-commons Show documentation
Show all versions of dragome-js-commons Show documentation
Dragome SDK module: commons
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