KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > jmx > browser > model > service > CustomizationService


1 /*
2
3  * EJTools, the Enterprise Java Tools
4
5  *
6
7  * Distributable under LGPL license.
8
9  * See terms of license at www.gnu.org.
10
11  */

12
13 package org.ejtools.jmx.browser.model.service;
14
15
16
17 import java.io.Serializable JavaDoc;
18
19 import java.util.Collection JavaDoc;
20
21
22
23 import org.ejtools.jmx.browser.mbean.View;
24
25
26
27 /**
28
29  * Description of the Class
30
31  *
32
33  * @author letiemble
34
35  * @created 13 décembre 2001
36
37  * @version $Revision: 1.6 $
38
39  * @todo Javadoc to complete
40
41  */

42
43 public interface CustomizationService extends Serializable JavaDoc
44
45 {
46
47    /**
48
49     * Gets the views attribute of the CustomizationService object
50
51     *
52
53     * @return The views value
54
55     */

56
57    public Collection JavaDoc getViews();
58
59
60
61
62
63    /**
64
65     * Gets the view attribute of the CustomizationService object
66
67     *
68
69     * @param index Description of the Parameter
70
71     * @return The view value
72
73     * @paramindex Description of the Parameter
74
75     * @paramindex Description of the Parameter
76
77     * @paramindex Description of the Parameter
78
79     */

80
81    public View getView(int index);
82
83 }
84
85
Popular Tags