1. /*
  2. * @(#)file JDMAclItem.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. JDMAclItem.java */
  12. package com.sun.jmx.snmp.IPAcl;
  13. /**
  14. * @version 4.8 12/19/03
  15. * @author Sun Microsystems, Inc.
  16. */
  17. class JDMAclItem extends SimpleNode {
  18. protected JDMAccess access= null;
  19. protected JDMCommunities com= null;
  20. JDMAclItem(int id) {
  21. super(id);
  22. }
  23. JDMAclItem(Parser p, int id) {
  24. super(p, id);
  25. }
  26. public static Node jjtCreate(int id) {
  27. return new JDMAclItem(id);
  28. }
  29. public static Node jjtCreate(Parser p, int id) {
  30. return new JDMAclItem(p, id);
  31. }
  32. public JDMAccess getAccess() {
  33. return access;
  34. }
  35. public JDMCommunities getCommunities() {
  36. return com;
  37. }
  38. }