KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > jmx > snmp > IPAcl > JDMEnterprise


1 /*
2  * @(#)file JDMEnterprise.java
3  * @(#)author Sun Microsystems, Inc.
4  * @(#)version 4.7
5  * @(#)date 08/02/09
6  *
7  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
8  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
9  *
10  */

11
12
13 /* Generated By:JJTree: Do not edit this line. JDMEnterprise.java */
14
15 package com.sun.jmx.snmp.IPAcl;
16
17 /**
18  * @version 4.7 12/19/03
19  * @author Sun Microsystems, Inc.
20  */

21 class JDMEnterprise extends SimpleNode {
22   protected String JavaDoc enterprise= "";
23
24   JDMEnterprise(int id) {
25     super(id);
26   }
27
28   JDMEnterprise(Parser p, int id) {
29     super(p, id);
30   }
31
32   public static Node jjtCreate(int id) {
33       return new JDMEnterprise(id);
34   }
35
36   public static Node jjtCreate(Parser p, int id) {
37       return new JDMEnterprise(p, id);
38   }
39 }
40
Popular Tags