cleanup / abuse system fix / prepping for a release
[mir.git] / source / mir / producer / ProducerNode.java
index 2e0f7c8..d9502de 100755 (executable)
  */
 package mir.producer;
 
-import java.util.Map;
-
-import mir.log.LoggerWrapper;
-
 /**
- * A <code>ProducerNode</code> is an atom of a noded producer factory.
- *
+ * A <code>ProducerNode</code> forms a building block of a noded producer factory.
  */
 public interface ProducerNode {
   /**
-   * Perform the operations of the producer node, based on a verb and a value set.
-   * The supplied logger object should be used for any logging.
+   * Perform the operations of the producer node, using the {@link ProductionContext}.
    */
-  public void produce(Map aValueSet, String aVerb, LoggerWrapper aLogger) throws ProducerExc, ProducerFailure;
+  public void produce(ProductionContext aProductionContext) throws ProducerExc, ProducerFailure;
 }
\ No newline at end of file