KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > jmx > JBossXMLExampleMBean


1 /*
2  * Generated file - Do not edit!
3  */

4 package test.jmx;
5
6 /**
7  * MBean interface.
8  * @xdoclet-generated at 16-04-05
9  * @copyright The XDoclet Team
10  * @author XDoclet
11  * @version 1.2.3
12  */

13 public interface JBossXMLExampleMBean {
14
15    /**
16     * Get the String value.
17     * @return the String value.
18     */

19   java.lang.String JavaDoc getString() ;
20
21    /**
22     * Get the Strings value.
23     * @return the Strings value.
24     */

25   java.lang.String JavaDoc[][] getStrings() ;
26
27    /**
28     * Set the String value.
29     * @param newString The new String value.
30     */

31   void setString(java.lang.String JavaDoc newString) ;
32
33    /**
34     * Get the Id value.
35     * @return the Id value.
36     * @param newId The new Id value.
37     */

38   java.lang.Integer JavaDoc getId() ;
39
40    /**
41     * Set the Id value.
42     */

43   void setId(java.lang.Integer JavaDoc newId) ;
44
45    /**
46     * Get the Value value.
47     * @return the Value value.
48     */

49   java.lang.Integer JavaDoc getValue() ;
50
51    /**
52     * Get the Ref value.
53     * @return the Ref value.
54     */

55   javax.management.ObjectName JavaDoc getRef() ;
56
57    /**
58     * Set the Ref value.
59     * @param newRef The new Ref value.
60     */

61   void setRef(javax.management.ObjectName JavaDoc newRef) ;
62
63    /**
64     * Does something.
65     * @param p1 a <code>String</code> value
66     * @param p2 an <code>Integer</code> value
67     */

68   java.lang.String JavaDoc doSomething(java.lang.String JavaDoc p1,java.lang.Integer JavaDoc p2) ;
69
70 }
71
Popular Tags