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