KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)file JDMAclBlock.java
3  * @(#)author Sun Microsystems, Inc.
4  * @(#)version 4.9
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. JDMAclBlock.java */
14
15 package com.sun.jmx.snmp.IPAcl;
16
17 import java.util.Hashtable JavaDoc;
18
19 /**
20  * @version 4.9 12/19/03
21  * @author Sun Microsystems, Inc.
22  */

23 class JDMAclBlock extends SimpleNode {
24   JDMAclBlock(int id) {
25     super(id);
26   }
27
28   JDMAclBlock(Parser p, int id) {
29     super(p, id);
30   }
31
32   public static Node jjtCreate(int id) {
33       return new JDMAclBlock(id);
34   }
35
36   public static Node jjtCreate(Parser p, int id) {
37       return new JDMAclBlock(p, id);
38   }
39   
40   /**
41    * Do no need to go through this part of the tree for
42    * building TrapEntry.
43    */

44    public void buildTrapEntries(Hashtable JavaDoc dest) {}
45
46   /**
47    * Do no need to go through this part of the tree for
48    * building InformEntry.
49    */

50    public void buildInformEntries(Hashtable JavaDoc dest) {}
51 }
52
Popular Tags