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

de.tla2bAst.SimpleResolver Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
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