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