blob: a8e380e4c9a5eb43b050d661de1187324f2872a4 [file] [log] [blame]
package org.eclipse.helios.tests;
import java.io.File;
import java.io.FilenameFilter;
class PackGzFileNameFilter implements FilenameFilter {
private static final String EXTENSION_PACEKD_JAR = ".jar.pack.gz";
public boolean accept(File dir, String name) {
return name.endsWith(EXTENSION_PACEKD_JAR);
}
}