Author: andre
Date: 2010-02-03 09:57:06 +0100 (Wed, 03 Feb 2010)
New Revision: 40819

Modified:
   
mmbase/branches/MMBase-1_9/applications/streams/src/main/java/org/mmbase/streams/createcaches/JobDefinition.java
Log:
javadoc


Modified: 
mmbase/branches/MMBase-1_9/applications/streams/src/main/java/org/mmbase/streams/createcaches/JobDefinition.java
===================================================================
--- 
mmbase/branches/MMBase-1_9/applications/streams/src/main/java/org/mmbase/streams/createcaches/JobDefinition.java
    2010-02-03 08:33:05 UTC (rev 40818)
+++ 
mmbase/branches/MMBase-1_9/applications/streams/src/main/java/org/mmbase/streams/createcaches/JobDefinition.java
    2010-02-03 08:57:06 UTC (rev 40819)
@@ -48,7 +48,15 @@
     final Stage stage;
 
     /**
-     * Creates a JobDefinition template (used in the configuration container).
+     * Creates a JobDefinition template as used in the configuration container 
or to kick-start
+     * a transcoding.
+     * @param id    identifier of this job, normally matches the one in 
configuration 
+     * @param inId  identifier of the job that is used as input, if no inId is 
found the 
+                    orginal source is used otherwise it should match with an 
existing cache
+     * @param label description for user purposes of the result
+     * @param t     transcoder to perform the job
+     * @param mt    mime type for which the jobdefinition is valid
+     * @param s     stage the jobdefinition applies to
      */
     public JobDefinition(String id, String inId, String label, Transcoder t, 
MimeType mt, Stage s) {
         assert id != null;
@@ -71,8 +79,7 @@
     public List<Analyzer> getAnalyzers() {
         return Collections.unmodifiableList(analyzers);
     }
-
-
+    
     public MimeType getMimeType() {
         return mimeType;
     }
@@ -93,4 +100,5 @@
     public String toString() {
         return "" + transcoder + " " + analyzers + (label == null ? "" : (" (" 
+ label + ")"));
     }
+
 }

_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to