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