
org.jnario.util.FileExtensions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.jnario.standalone Show documentation
Show all versions of org.jnario.standalone Show documentation
The required libraries to execute Jnario specifications without Eclipse.
The newest version!
package org.jnario.util;
import java.util.Set;
import org.eclipse.emf.common.util.URI;
import com.google.common.collect.Sets;
public class FileExtensions {
private static final Set JNARIO_FILE_EXTENSIONS = Sets.newHashSet("spec", "suite", "feature");
public static boolean isJnarioSpec(URI dslSourceFile) {
return JNARIO_FILE_EXTENSIONS.contains(dslSourceFile.fileExtension().toLowerCase());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy