Thread: [Ejtools-cvs] libraries/graph/src/main/org/ejtools/graph/service GraphConsumer.java,1.3,1.4 GraphCon
Brought to you by:
letiemble
Update of /cvsroot/ejtools/libraries/graph/src/main/org/ejtools/graph/service In directory sc8-pr-cvs1:/tmp/cvs-serv17417/graph/src/main/org/ejtools/graph/service Modified Files: GraphConsumer.java GraphConsumerMediator.java GraphConsumerSelector.java GraphProducer.java GraphService.java GraphServiceProvider.java Log Message: Adjust some Javadoc. Index: GraphConsumer.java =================================================================== RCS file: /cvsroot/ejtools/libraries/graph/src/main/org/ejtools/graph/service/GraphConsumer.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GraphConsumer.java 15 Sep 2003 22:02:50 -0000 1.3 --- GraphConsumer.java 15 Sep 2003 22:11:22 -0000 1.4 *************** *** 9,14 **** /** ! * @author letiemble ! * @created 27 novembre 2002 * @version $Revision$ */ --- 9,13 ---- /** ! * @author Laurent Etiemble * @version $Revision$ */ Index: GraphConsumerMediator.java =================================================================== RCS file: /cvsroot/ejtools/libraries/graph/src/main/org/ejtools/graph/service/GraphConsumerMediator.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** GraphConsumerMediator.java 15 Sep 2003 22:02:50 -0000 1.2 --- GraphConsumerMediator.java 15 Sep 2003 22:11:22 -0000 1.3 *************** *** 1,23 **** ! /* ! * EJTools, the Enterprise Java Tools ! * ! * Distributable under LGPL license. ! * See terms of license at www.gnu.org. ! */ ! package org.ejtools.graph.service; ! ! ! /** ! * @author letiemble ! * @created 17 février 2003 ! * @version $Revision$ ! */ ! public interface GraphConsumerMediator ! { ! /** ! * Gets the graphConsumers attribute of the GraphMediator object ! * ! * @return The graphConsumers value ! */ ! public GraphConsumer[] getGraphConsumers(); ! } --- 1,22 ---- ! /* ! * EJTools, the Enterprise Java Tools ! * ! * Distributable under LGPL license. ! * See terms of license at www.gnu.org. ! */ ! package org.ejtools.graph.service; ! ! ! /** ! * @author Laurent Etiemble ! * @version $Revision$ ! */ ! public interface GraphConsumerMediator ! { ! /** ! * Gets the graphConsumers attribute of the GraphMediator object ! * ! * @return The graphConsumers value ! */ ! public GraphConsumer[] getGraphConsumers(); ! } Index: GraphConsumerSelector.java =================================================================== RCS file: /cvsroot/ejtools/libraries/graph/src/main/org/ejtools/graph/service/GraphConsumerSelector.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GraphConsumerSelector.java 15 Sep 2003 22:02:50 -0000 1.3 --- GraphConsumerSelector.java 15 Sep 2003 22:11:22 -0000 1.4 *************** *** 17,22 **** * Description of the Class * ! * @author letiemble ! * @created 8 avril 2002 * @version $Revision$ */ --- 17,21 ---- * Description of the Class * ! * @author Laurent Etiemble * @version $Revision$ */ Index: GraphProducer.java =================================================================== RCS file: /cvsroot/ejtools/libraries/graph/src/main/org/ejtools/graph/service/GraphProducer.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GraphProducer.java 15 Sep 2003 22:02:50 -0000 1.3 --- GraphProducer.java 15 Sep 2003 22:11:22 -0000 1.4 *************** *** 1,31 **** ! /* ! * EJTools, the Enterprise Java Tools ! * ! * Distributable under LGPL license. ! * See terms of license at www.gnu.org. ! */ ! package org.ejtools.graph.service; ! ! ! /** ! * @author letiemble ! * @created 27 novembre 2002 ! * @version $Revision$ ! */ ! public interface GraphProducer ! { ! /** ! * Description of the Method ! * ! * @return Description of the Return Value ! */ ! public double produce(); ! ! ! /** ! * Gets the graphProducerId attribute of the GraphProducer object ! * ! * @return The graphProducerId value ! */ ! public String getGraphProducerId(); ! } --- 1,30 ---- ! /* ! * EJTools, the Enterprise Java Tools ! * ! * Distributable under LGPL license. ! * See terms of license at www.gnu.org. ! */ ! package org.ejtools.graph.service; ! ! ! /** ! * @author Laurent Etiemble ! * @version $Revision$ ! */ ! public interface GraphProducer ! { ! /** ! * Description of the Method ! * ! * @return Description of the Return Value ! */ ! public double produce(); ! ! ! /** ! * Gets the graphProducerId attribute of the GraphProducer object ! * ! * @return The graphProducerId value ! */ ! public String getGraphProducerId(); ! } Index: GraphService.java =================================================================== RCS file: /cvsroot/ejtools/libraries/graph/src/main/org/ejtools/graph/service/GraphService.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GraphService.java 15 Sep 2003 22:02:50 -0000 1.3 --- GraphService.java 15 Sep 2003 22:11:22 -0000 1.4 *************** *** 1,48 **** ! /* ! * EJTools, the Enterprise Java Tools ! * ! * Distributable under LGPL license. ! * See terms of license at www.gnu.org. ! */ ! package org.ejtools.graph.service; ! ! ! /** ! * @author letiemble ! * @created 27 novembre 2002 ! * @version $Revision$ ! */ ! public interface GraphService extends GraphConsumerMediator ! { ! /** ! * Adds a feature to the GraphProducer attribute of the GraphService object ! * ! * @param producer The feature to be added to the GraphProducer attribute ! * @param consumer The feature to be added to the GraphProducer attribute ! */ ! public void addGraphProducer(GraphConsumer consumer, GraphProducer producer); ! ! ! /** ! * Description of the Method ! * ! * @param producer Description of the Parameter ! */ ! public void removeGraphProducer(GraphProducer producer); ! ! ! /** ! * Adds a feature to the GraphConsumer attribute of the GraphService object ! * ! * @param consumer The feature to be added to the GraphConsumer attribute ! */ ! public void addGraphConsumer(GraphConsumer consumer); ! ! ! /** ! * Description of the Method ! * ! * @param consumer Description of the Parameter ! */ ! public void removeGraphConsumer(GraphConsumer consumer); ! } --- 1,47 ---- ! /* ! * EJTools, the Enterprise Java Tools ! * ! * Distributable under LGPL license. ! * See terms of license at www.gnu.org. ! */ ! package org.ejtools.graph.service; ! ! ! /** ! * @author Laurent Etiemble ! * @version $Revision$ ! */ ! public interface GraphService extends GraphConsumerMediator ! { ! /** ! * Adds a feature to the GraphProducer attribute of the GraphService object ! * ! * @param producer The feature to be added to the GraphProducer attribute ! * @param consumer The feature to be added to the GraphProducer attribute ! */ ! public void addGraphProducer(GraphConsumer consumer, GraphProducer producer); ! ! ! /** ! * Description of the Method ! * ! * @param producer Description of the Parameter ! */ ! public void removeGraphProducer(GraphProducer producer); ! ! ! /** ! * Adds a feature to the GraphConsumer attribute of the GraphService object ! * ! * @param consumer The feature to be added to the GraphConsumer attribute ! */ ! public void addGraphConsumer(GraphConsumer consumer); ! ! ! /** ! * Description of the Method ! * ! * @param consumer Description of the Parameter ! */ ! public void removeGraphConsumer(GraphConsumer consumer); ! } Index: GraphServiceProvider.java =================================================================== RCS file: /cvsroot/ejtools/libraries/graph/src/main/org/ejtools/graph/service/GraphServiceProvider.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GraphServiceProvider.java 15 Sep 2003 22:02:50 -0000 1.3 --- GraphServiceProvider.java 15 Sep 2003 22:11:22 -0000 1.4 *************** *** 17,22 **** /** ! * @author letiemble ! * @created 27 novembre 2002 * @version $Revision$ */ --- 17,21 ---- /** ! * @author Laurent Etiemble * @version $Revision$ */ *************** *** 141,145 **** { parent.remove(consumer); ! logger.debug("GraphConsumer removed"); } } --- 140,144 ---- { parent.remove(consumer); ! logger.debug("GraphConsumer removed"); } } |