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

org.etlunit.feature.database.FileRefImpl Maven / Gradle / Ivy

There is a newer version: 1.6.9
Show newest version
package org.etlunit.feature.database;

public class FileRefImpl implements SQLAggregator.FileRef
{
	private final String refName;
	private final int lineNo;
	private final String text;

	public FileRefImpl(String ref, int line, String text)
	{
		refName = ref;
		lineNo = line;
		this.text = text;
	}

	public String getCurrentRefName()
	{
		return refName;
	}

	public int getCurrentLineNumber()
	{
		return lineNo;
	}

	public String getLine()
	{
		return text;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy