FileDocCategorySizeDatePackage
NewLineEvent.javaAPI DocGlassfish v2 API531Wed Feb 08 12:31:22 GMT 2006persistence.antlr.debug

NewLineEvent

public class NewLineEvent extends Event

Fields Summary
private int
line
Constructors Summary
public NewLineEvent(Object source)

		super(source);
	
public NewLineEvent(Object source, int line)

		super(source);
		setValues(line);
	
Methods Summary
public intgetLine()

		return line;
	
voidsetLine(int line)

		this.line = line;
	
voidsetValues(int line)
This should NOT be called from anyone other than ParserEventSupport!

		setLine(line);
	
public java.lang.StringtoString()

		return "NewLineEvent [" + line + "]";