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

prompto.problem.IProblem Maven / Gradle / Ivy

The newest version!
package prompto.problem;

public interface IProblem {
	
	String getPath();
	int getStartIndex();
	int getStartLine();
	int getStartColumn();
	int getEndIndex();
	int getEndLine();
	int getEndColumn();
	String getMessage();
	Type getType();
	
	static enum Type {
		// match Eclipse SEVERITY
		INFO,		// public static final int SEVERITY_INFO = 0;
		WARNING, 	// public static final int SEVERITY_WARNING = 1;
		ERROR		// public static final int SEVERITY_ERROR = 2;
		
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy