NewLineEvent.java
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:1k
源码类别:

编译器/解释器

开发平台:

Others

  1. package antlr.debug;
  2. public class NewLineEvent extends Event {
  3. private int line;
  4. public NewLineEvent(Object source) {
  5. super(source);
  6. }
  7. public NewLineEvent(Object source, int line) {
  8. super(source);
  9. setValues(line);
  10. }
  11. public int getLine() {
  12. return line;
  13. }
  14. void setLine(int line) {
  15. this.line = line;
  16. }
  17. /** This should NOT be called from anyone other than ParserEventSupport! */
  18. void setValues(int line) {
  19. setLine(line);
  20. }
  21. public String toString() {
  22. return "NewLineEvent [" + line + "]";
  23. }
  24. }