
de.tla2bAst.SimpleResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tla2bAST Show documentation
Show all versions of tla2bAST Show documentation
Translator from TLA+ to ProB's AST representation.
package de.tla2bAst;
import java.io.File;
import util.FilenameToStream;
public class SimpleResolver implements FilenameToStream {
private File file;
public boolean isStandardModule(String arg0) {
return false;
}
public File resolve(String arg0, boolean arg1) {
file = new File(arg0);
return file;
}
public String getFullPath() {
return file.getAbsolutePath();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy