KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)file JDMInformBlock.java
3  * @(#)author Sun Microsystems, Inc.
4  * @(#)version 1.5
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 /* Generated By:JJTree: Do not edit this line. JDMInformBlock.java */
12
13 package com.sun.jmx.snmp.IPAcl;
14
15 import java.util.Hashtable JavaDoc;
16
17 class JDMInformBlock extends SimpleNode {
18     JDMInformBlock(int id) {
19         super(id);
20     }
21
22     JDMInformBlock(Parser p, int id) {
23         super(p, id);
24     }
25
26     public static Node jjtCreate(int id) {
27         return new JDMInformBlock(id);
28     }
29
30     public static Node jjtCreate(Parser p, int id) {
31         return new JDMInformBlock(p, id);
32     }
33
34     /**
35      * Do no need to go through this part of the tree for
36      * building AclEntry.
37      */

38     public void buildAclEntries(PrincipalImpl owner, AclImpl acl) {}
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
Popular Tags