Author: hboutemy
Date: Fri Nov 7 06:50:52 2008
New Revision: 712143
URL: http://svn.apache.org/viewvc?rev=712143&view=rev
Log:
improved @since info
Modified:
maven/doxia/doxia/trunk/doxia-sink-api/src/main/java/org/apache/maven/doxia/sink/Sink.java
maven/doxia/doxia/trunk/doxia-sink-api/src/main/java/org/codehaus/doxia/sink/Sink.java
Modified:
maven/doxia/doxia/trunk/doxia-sink-api/src/main/java/org/apache/maven/doxia/sink/Sink.java
URL:
http://svn.apache.org/viewvc/maven/doxia/doxia/trunk/doxia-sink-api/src/main/java/org/apache/maven/doxia/sink/Sink.java?rev=712143&r1=712142&r2=712143&view=diff
==============================================================================
---
maven/doxia/doxia/trunk/doxia-sink-api/src/main/java/org/apache/maven/doxia/sink/Sink.java
(original)
+++
maven/doxia/doxia/trunk/doxia-sink-api/src/main/java/org/apache/maven/doxia/sink/Sink.java
Fri Nov 7 06:50:52 2008
@@ -50,7 +50,7 @@
* <b>Note</b>: All implemented sink <b>should</b> use UTF-8 as encoding.
* </p>
*
- * @since 1.0
+ * @since 1.0-alpha-6
* @author <a href="mailto:[EMAIL PROTECTED]">Jason van Zyl</a>
* @author <a href="mailto:[EMAIL PROTECTED]">Vincent Siveton</a>
* @author ltheussl
@@ -189,6 +189,7 @@
* </blockquote>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void head( SinkEventAttributes attributes );
@@ -212,6 +213,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
* @see #head(SinkEventAttributes)
*/
void title( SinkEventAttributes attributes );
@@ -236,6 +238,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
* @see #head(SinkEventAttributes)
*/
void author( SinkEventAttributes attributes );
@@ -260,6 +263,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
* @see #head(SinkEventAttributes)
*/
void date( SinkEventAttributes attributes );
@@ -284,6 +288,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
* @see #head(SinkEventAttributes)
*/
void body( SinkEventAttributes attributes );
@@ -444,6 +449,7 @@
*
* @param level the section level.
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void section( int level, SinkEventAttributes attributes );
@@ -477,6 +483,7 @@
*
* @param level the section title level.
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void sectionTitle( int level, SinkEventAttributes attributes );
@@ -502,6 +509,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void list( SinkEventAttributes attributes );
@@ -525,6 +533,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void listItem( SinkEventAttributes attributes );
@@ -550,6 +559,7 @@
*
* @param numbering the numbering style.
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
* @see #NUMBERING_DECIMAL
* @see #NUMBERING_LOWER_ALPHA
* @see #NUMBERING_LOWER_ROMAN
@@ -578,6 +588,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void numberedListItem( SinkEventAttributes attributes );
@@ -601,6 +612,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void definitionList( SinkEventAttributes attributes );
@@ -628,6 +640,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void definitionListItem( SinkEventAttributes attributes );
@@ -651,6 +664,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void definition( SinkEventAttributes attributes );
@@ -674,6 +688,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void definedTerm( SinkEventAttributes attributes );
@@ -726,6 +741,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void figure( SinkEventAttributes attributes );
@@ -749,6 +765,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
* @see #figure(SinkEventAttributes)
*/
void figureCaption( SinkEventAttributes attributes );
@@ -789,6 +806,7 @@
*
* @param src the image source, a valid URL.
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
* @see #figure(SinkEventAttributes)
*/
void figureGraphics( String src, SinkEventAttributes attributes );
@@ -850,6 +868,7 @@
* </blockquote>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void table( SinkEventAttributes attributes );
@@ -898,6 +917,7 @@
* </blockquote>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void tableRow( SinkEventAttributes attributes );
@@ -937,6 +957,7 @@
* </blockquote>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void tableCell( SinkEventAttributes attributes );
@@ -968,6 +989,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void tableHeaderCell( SinkEventAttributes attributes );
@@ -998,6 +1020,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
* @see #table(SinkEventAttributes)
*/
void tableCaption( SinkEventAttributes attributes );
@@ -1023,6 +1046,7 @@
* </p>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void paragraph( SinkEventAttributes attributes );
@@ -1051,6 +1075,7 @@
* </blockquote>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void verbatim( SinkEventAttributes attributes );
@@ -1078,6 +1103,7 @@
* </blockquote>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void horizontalRule( SinkEventAttributes attributes );
@@ -1115,6 +1141,7 @@
*
* @param name the name of the anchor. This has to be a valid SGML NAME
token.
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void anchor( String name, SinkEventAttributes attributes );
@@ -1156,6 +1183,7 @@
*
* @param name the name of the link.
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void link( String name, SinkEventAttributes attributes );
@@ -1231,6 +1259,7 @@
* </blockquote>
*
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void lineBreak( SinkEventAttributes attributes );
@@ -1270,6 +1299,7 @@
*
* @param text The text to write.
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void text( String text, SinkEventAttributes attributes );
@@ -1297,6 +1327,7 @@
* @param requiredParams An optional array of required parameters to the
event.
* May be <code>null</code>.
* @param attributes A set of [EMAIL PROTECTED] SinkEventAttributes}, may
be <code>null</code>.
+ * @since 1.0-beta-1
*/
void unknown( String name, Object[] requiredParams, SinkEventAttributes
attributes );
Modified:
maven/doxia/doxia/trunk/doxia-sink-api/src/main/java/org/codehaus/doxia/sink/Sink.java
URL:
http://svn.apache.org/viewvc/maven/doxia/doxia/trunk/doxia-sink-api/src/main/java/org/codehaus/doxia/sink/Sink.java?rev=712143&r1=712142&r2=712143&view=diff
==============================================================================
---
maven/doxia/doxia/trunk/doxia-sink-api/src/main/java/org/codehaus/doxia/sink/Sink.java
(original)
+++
maven/doxia/doxia/trunk/doxia-sink-api/src/main/java/org/codehaus/doxia/sink/Sink.java
Fri Nov 7 06:50:52 2008
@@ -22,7 +22,7 @@
/**
* Generic document processing interface.
*
- * @deprecated use [EMAIL PROTECTED] org.apache.maven.doxia.sink.Sink} instead.
+ * @deprecated use [EMAIL PROTECTED] org.apache.maven.doxia.sink.Sink} instead
(since 1.0-alpha-6).
* @version $Id$
*/
public interface Sink