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