1. /*
  2. * @(#)file JDMAclBlock.java
  3. * @(#)author Sun Microsystems, Inc.
  4. * @(#)version 4.9
  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. JDMAclBlock.java */
  12. package com.sun.jmx.snmp.IPAcl;
  13. import java.util.Hashtable;
  14. /**
  15. * @version 4.9 12/19/03
  16. * @author Sun Microsystems, Inc.
  17. */
  18. class JDMAclBlock extends SimpleNode {
  19. JDMAclBlock(int id) {
  20. super(id);
  21. }
  22. JDMAclBlock(Parser p, int id) {
  23. super(p, id);
  24. }
  25. public static Node jjtCreate(int id) {
  26. return new JDMAclBlock(id);
  27. }
  28. public static Node jjtCreate(Parser p, int id) {
  29. return new JDMAclBlock(p, id);
  30. }
  31. /**
  32. * Do no need to go through this part of the tree for
  33. * building TrapEntry.
  34. */
  35. public void buildTrapEntries(Hashtable dest) {}
  36. /**
  37. * Do no need to go through this part of the tree for
  38. * building InformEntry.
  39. */
  40. public void buildInformEntries(Hashtable dest) {}
  41. }