
org.fix4j.spec.codegen.Util.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fix4j-assert-codegen Show documentation
Show all versions of fix4j-assert-codegen Show documentation
fix4j-assert is a library to assist in testing of applications using FIX protocol
package org.fix4j.spec.codegen
/**
* User: ben
* Date: 5/09/2014
* Time: 5:39 AM
*/
class Util {
private Util() {}
public static File getFileOnClasspath(String specLocationOnClasspath) {
final URL resource = SpecParser.class.getResource(specLocationOnClasspath);
final File fixSpec = new File(resource.getFile());
return fixSpec
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy