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

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

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

import java.util.List;
import java.util.jar.JarOutputStream;

public interface ClasspathEntry
{
	ClasspathFile getClasspathFileOf(String relativeName);
	List getAllFilesNamesFiltering(ClasspathFileFilter classpathFilter);
	void copyFilesToJar(JarOutputStream jos);
	String getName();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy