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