KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > management > DescriptorRead


1 /*
2  * @(#)DescriptorRead.java 1.3 05/11/17
3  *
4  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package javax.management;
9
10 /**
11  * Interface to read the Descriptor of a management interface element
12  * such as an MBeanInfo.
13  * @since 1.6
14  */

15 public interface DescriptorRead {
16    /**
17     * Returns a copy of Descriptor.
18     *
19     * @return Descriptor associated with the component implementing this interface.
20     * The return value is never null, but the returned descriptor may be empty.
21     */

22     public Descriptor JavaDoc getDescriptor();
23 }
24
Popular Tags