1. /*
  2. * @(#)file JDMTrapNum.java
  3. * @(#)author Sun Microsystems, Inc.
  4. * @(#)version 4.7
  5. * @(#)date 04/09/15
  6. *
  7. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  8. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  9. *
  10. */
  11. /* Generated By:JJTree: Do not edit this line. JDMTrapNum.java */
  12. package com.sun.jmx.snmp.IPAcl;
  13. /**
  14. * @version 4.7 12/19/03
  15. * @author Sun Microsystems, Inc.
  16. */
  17. class JDMTrapNum extends SimpleNode {
  18. protected int low=0;
  19. protected int high=0;
  20. JDMTrapNum(int id) {
  21. super(id);
  22. }
  23. JDMTrapNum(Parser p, int id) {
  24. super(p, id);
  25. }
  26. public static Node jjtCreate(int id) {
  27. return new JDMTrapNum(id);
  28. }
  29. public static Node jjtCreate(Parser p, int id) {
  30. return new JDMTrapNum(p, id);
  31. }
  32. }