1 10 11 12 13 package com.sun.jmx.snmp.IPAcl; 14 15 class JDMInformCommunity extends SimpleNode { 16 protected String community= ""; 17 JDMInformCommunity(int id) { 18 super(id); 19 } 20 21 JDMInformCommunity(Parser p, int id) { 22 super(p, id); 23 } 24 25 public static Node jjtCreate(int id) { 26 return new JDMInformCommunity(id); 27 } 28 29 public static Node jjtCreate(Parser p, int id) { 30 return new JDMInformCommunity(p, id); 31 } 32 33 public String getCommunity() { 34 return community; 35 } 36 } 37 | Popular Tags |