You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by vg...@apache.org on 2007/12/19 03:59:07 UTC

svn commit: r605392 - /cocoon/trunk/core/cocoon-pipeline/cocoon-pipeline-components/src/main/java/org/apache/cocoon/generation/CalendarGenerator.java

Author: vgritsenko
Date: Tue Dec 18 18:59:05 2007
New Revision: 605392

URL: http://svn.apache.org/viewvc?rev=605392&view=rev
Log:
repair javadoc

Modified:
    cocoon/trunk/core/cocoon-pipeline/cocoon-pipeline-components/src/main/java/org/apache/cocoon/generation/CalendarGenerator.java

Modified: cocoon/trunk/core/cocoon-pipeline/cocoon-pipeline-components/src/main/java/org/apache/cocoon/generation/CalendarGenerator.java
URL: http://svn.apache.org/viewvc/cocoon/trunk/core/cocoon-pipeline/cocoon-pipeline-components/src/main/java/org/apache/cocoon/generation/CalendarGenerator.java?rev=605392&r1=605391&r2=605392&view=diff
==============================================================================
--- cocoon/trunk/core/cocoon-pipeline/cocoon-pipeline-components/src/main/java/org/apache/cocoon/generation/CalendarGenerator.java (original)
+++ cocoon/trunk/core/cocoon-pipeline/cocoon-pipeline-components/src/main/java/org/apache/cocoon/generation/CalendarGenerator.java Tue Dec 18 18:59:05 2007
@@ -38,18 +38,9 @@
 import org.xml.sax.helpers.AttributesImpl;
 
 /**
- * @cocoon.sitemap.component.documentation
  * Generates an XML document representing a calendar for a given month and year.
- * 
- * @cocoon.sitemap.component.documentation.caching TBD
- * @cocoon.sitemap.component.name   calendar
- * @cocoon.sitemap.component.label  content
- * @cocoon.sitemap.component.logger sitemap.generator.calendar
- * 
- * 
- * <p>
- * Here is a sample output:
- * </p>
+ *
+ * <p>Here is a sample output:
  * <pre>
  * &lt;calendar:calendar xmlns:calendar="http://apache.org/cocoon/calendar/1.0"
  *     year="2004" month="January" prevMonth="12" prevYear="2003"
@@ -63,9 +54,9 @@
  *   ...
  * &lt;/calendar:calendar&gt;
  * </pre>
- * <p>
- * The <i>src</i> parameter is ignored.
- * </p>
+ *
+ * <p>The <i>src</i> parameter is ignored.
+ *
  * <p>
  *  <b>Configuration options:</b>
  *  <dl>
@@ -88,9 +79,17 @@
  *  </dl>
  * </p>
  *               
+ * @cocoon.sitemap.component.documentation
+ * Generates an XML document representing a calendar for a given month and year.
+ * @cocoon.sitemap.component.documentation.caching TBD
+ * @cocoon.sitemap.component.name   calendar
+ * @cocoon.sitemap.component.label  content
+ * @cocoon.sitemap.component.logger sitemap.generator.calendar
+ *
  * @version $Id$
  */
-public class CalendarGenerator extends ServiceableGenerator implements CacheableProcessingComponent {
+public class CalendarGenerator extends ServiceableGenerator
+                               implements CacheableProcessingComponent {
     
     /** The URI of the namespace of this generator. */
     protected static final String URI = "http://apache.org/cocoon/calendar/1.0";