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

refdiff.core.io.SourceFile Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package refdiff.core.io;

import java.nio.file.Path;

public final class SourceFile {
	
	private final Path path;
	
	public SourceFile(Path path) {
		this.path = path;
	}
	
	public String getPath() {
		return path.toString().replace('\\', '/');
	}
	
	@Override
	public String toString() {
		return getPath();
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy