KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > graph > service > GraphProducer


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

7 package org.ejtools.graph.service;
8
9
10 /**
11  * @author Laurent Etiemble
12  * @version $Revision: 1.5 $
13  */

14 public interface GraphProducer
15 {
16    /**
17     * Description of the Method
18     *
19     * @return Description of the Return Value
20     */

21    public double produce();
22
23
24    /**
25     * Gets the graphProducerId attribute of the GraphProducer object
26     *
27     * @return The graphProducerId value
28     */

29    public String JavaDoc getGraphProducerId();
30 }
31
Popular Tags