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