changing package for this feller

This commit is contained in:
benfry
2012-12-06 22:56:27 +00:00
parent a60a6abbc4
commit 00f264072e
31 changed files with 30 additions and 30 deletions

View File

@@ -0,0 +1,36 @@
package processing.mode.experimental;
/**
* Error markers displayed on the Error Bar.
*
* @author Manindra Moharana <me@mkmoharana.com>
*
*/
public class ErrorMarker {
/**
* y co-ordinate of the marker
*/
public int y;
/**
* Type of marker: Error or Warning?
*/
public int type = -1;
/**
* Error Type constant
*/
public static final int Error = 1;
/**
* Warning Type constant
*/
public static final int Warning = 2;
/**
* Problem that the error marker represents
* @see Problem
*/
public Problem problem;
public ErrorMarker(Problem problem, int y, int type) {
this.problem = problem;
this.y = y;
this.type = type;
}
}