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

goal.tools.history.explanation.reasons.Reason Maven / Gradle / Ivy

The newest version!
package goal.tools.history.explanation.reasons;

import krTools.parser.SourceInfo;

public abstract class Reason {
	protected final SourceInfo location;
	protected final int state;

	protected Reason(final SourceInfo location, final int state) {
		this.location = location;
		this.state = state;
	}

	@Override
	public abstract String toString();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy