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