1 /*2 * EJTools, the Enterprise Java Tools3 *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 Etiemble12 * @version $Revision: 1.5 $13 */14 public interface GraphProducer15 {16 /**17 * Description of the Method18 *19 * @return Description of the Return Value20 */21 public double produce();22 23 24 /**25 * Gets the graphProducerId attribute of the GraphProducer object26 *27 * @return The graphProducerId value28 */29 public String getGraphProducerId();30 }31