KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)file JDMInformCommunity.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. JDMInformCommunity.java */
12
13 package com.sun.jmx.snmp.IPAcl;
14
15 class JDMInformCommunity extends SimpleNode {
16     protected String JavaDoc community= "";
17     JDMInformCommunity(int id) {
18         super(id);
19     }
20
21     JDMInformCommunity(Parser p, int id) {
22         super(p, id);
23     }
24
25     public static Node jjtCreate(int id) {
26         return new JDMInformCommunity(id);
27     }
28
29     public static Node jjtCreate(Parser p, int id) {
30         return new JDMInformCommunity(p, id);
31     }
32   
33     public String JavaDoc getCommunity() {
34         return community;
35     }
36 }
37
Popular Tags