1. /*
  2. * @(#)file JDMInformItem.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. JDMInformItem.java */
  11. package com.sun.jmx.snmp.IPAcl;
  12. class JDMInformItem extends SimpleNode {
  13. protected JDMInformCommunity comm = null;
  14. JDMInformItem(int id) {
  15. super(id);
  16. }
  17. JDMInformItem(Parser p, int id) {
  18. super(p, id);
  19. }
  20. public static Node jjtCreate(int id) {
  21. return new JDMInformItem(id);
  22. }
  23. public static Node jjtCreate(Parser p, int id) {
  24. return new JDMInformItem(p, id);
  25. }
  26. public JDMInformCommunity getCommunity(){
  27. return comm;
  28. }
  29. }