KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > oddjob > jmx > client > ObjectInterface


1 package org.oddjob.jmx.client;
2
3 /**
4  * An interface for the proxy to implement so that we can get at the toString value.
5  *
6  * @author Rob Gordon
7  */

8 public interface ObjectInterface {
9     
10     /**
11      * Implentation of toString, to match object.
12      *
13      * @return A string representation of the object.
14      */

15     public String JavaDoc toString();
16
17 }
18
Popular Tags