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