KickJava   Java API By Example, From Geeks To Geeks.

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


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

40    public void buildAclEntries(PrincipalImpl owner, AclImpl acl) {}
41
42   /**
43    * Do no need to go through this part of the tree for
44    * building InformEntry.
45    */

46    public void buildInformEntries(Hashtable JavaDoc dest) {}
47 }
48
Popular Tags