org.apache.maven.doxia.module.apt
Class AptSink

java.lang.Object
  extended byorg.apache.maven.doxia.sink.SinkAdapter
      extended byorg.apache.maven.doxia.sink.AbstractTextSink
          extended byorg.apache.maven.doxia.module.apt.AptSink
All Implemented Interfaces:
AptMarkup, Markup, Sink, TextMarkup

public class AptSink
extends AbstractTextSink
implements AptMarkup

APT Sink implementation.

Since:
1.0
Version:
$Id: AptSink.java 572813 2007-09-04 20:46:47Z ltheussl $
Author:
eredmond
Plexus component:
role:
"org.apache.maven.doxia.sink.Sink"
role-hint:
"apt"

Field Summary
 
Fields inherited from interface org.apache.maven.doxia.module.apt.AptMarkup
ANCHOR_END_MARKUP, ANCHOR_START_MARKUP, BACKSLASH, BOLD_END_MARKUP, BOLD_START_MARKUP, BOXED_VERBATIM_END_MARKUP, BOXED_VERBATIM_START_MARKUP, COLON, COMMENT, HEADER_START_MARKUP, HORIZONTAL_RULE_MARKUP, ITALIC_END_MARKUP, ITALIC_START_MARKUP, LINK_END_MARKUP, LINK_START_1_MARKUP, LINK_START_2_MARKUP, LIST_END_MARKUP, LIST_START_MARKUP, MONOSPACED_END_MARKUP, MONOSPACED_START_MARKUP, NON_BOXED_VERBATIM_END_MARKUP, NON_BOXED_VERBATIM_START_MARKUP, NON_BREAKING_SPACE_MARKUP, NUMBERING, NUMBERING_LOWER_ALPHA_CHAR, NUMBERING_LOWER_ROMAN_CHAR, NUMBERING_UPPER_ALPHA_CHAR, NUMBERING_UPPER_ROMAN_CHAR, PAGE_BREAK, PAGE_BREAK_MARKUP, PERCENT, SECTION_TITLE_START_MARKUP, TAB, TABLE_CELL_SEPARATOR_MARKUP, TABLE_COL_CENTERED_ALIGNED_MARKUP, TABLE_COL_LEFT_ALIGNED_MARKUP, TABLE_COL_RIGHT_ALIGNED_MARKUP, TABLE_ROW_SEPARATOR_MARKUP, TABLE_ROW_START_MARKUP
 
Fields inherited from interface org.apache.maven.doxia.markup.TextMarkup
PIPE
 
Fields inherited from interface org.apache.maven.doxia.markup.Markup
EOL, EQUAL, GREATER_THAN, LEFT_CURLY_BRACKET, LEFT_SQUARE_BRACKET, LESS_THAN, MINUS, PLUS, QUOTE, RIGHT_CURLY_BRACKET, RIGHT_SQUARE_BRACKET, SLASH, SPACE, STAR
 
Fields inherited from interface org.apache.maven.doxia.sink.Sink
NUMBERING_DECIMAL, NUMBERING_LOWER_ALPHA, NUMBERING_LOWER_ROMAN, NUMBERING_UPPER_ALPHA, NUMBERING_UPPER_ROMAN, ROLE, SECTION_LEVEL_1, SECTION_LEVEL_2, SECTION_LEVEL_3, SECTION_LEVEL_4, SECTION_LEVEL_5
 
Constructor Summary
AptSink(Writer writer)
          Constructor, initialize the variables.
 
Method Summary
 void anchor_()
          
 void anchor(String name)
          
 void author_()
          
 void bold_()
          
 void bold()
          
 void close()
          
protected  void content(String text)
          Write Apt escaped text to output.
 void date_()
          
 void definedTerm_()
          
 void definedTerm()
          
 void definition_()
          
 void definition()
          
 void definitionList_()
          
 void definitionList()
          
static String encodeFragment(String text)
          Forward to HtmlTools.encodeFragment( text ).
static String encodeURL(String text)
          Forward to HtmlTools.encodeURL( text ).
 void figureCaption_()
          
 void figureGraphics(String name)
          
 void flush()
          
protected  StringBuffer getBuffer()
          Returns the buffer that holds the current text.
 void head_()
          
 void head()
          
 void horizontalRule()
          
 void italic_()
          
 void italic()
          
 void lineBreak()
          
 void link_()
          
 void link(String name)
          
 void link(String name, String target)
          A link with a target.
 void list_()
          
 void list()
          
 void listItem_()
          
 void listItem()
          
 void monospaced_()
          
 void monospaced()
          
 void nonBreakingSpace()
          
 void numberedList_()
          
 void numberedList(int numbering)
          
 void numberedListItem_()
          
 void numberedListItem()
          
 void pageBreak()
          
 void paragraph_()
          
 void paragraph()
          
 void rawText(String text)
          
protected  void resetBuffer()
          Reset the StringBuffer.
protected  void resetState()
          Reset all variables.
protected  void resetTableCaptionBuffer()
          Reset the TableCaptionBuffer.
 void section1_()
          
 void section2_()
          
 void section3_()
          
 void section4_()
          
 void section5_()
          
 void sectionTitle1_()
          
 void sectionTitle1()
          
 void sectionTitle2_()
          
 void sectionTitle2()
          
 void sectionTitle3_()
          
 void sectionTitle3()
          
 void sectionTitle4_()
          
 void sectionTitle4()
          
 void sectionTitle5_()
          
 void sectionTitle5()
          
protected  void setHeadFlag(boolean headFlag)
          Used to determine whether we are in head mode.
 void table_()
          
 void table()
          
 void tableCaption_()
          
 void tableCaption()
          
 void tableCell_()
          
 void tableCell()
          
 void tableCell(boolean headerRow)
          Starts a table cell.
 void tableHeaderCell_()
          
 void tableHeaderCell()
          
 void tableRow_()
          
 void tableRow()
          
 void tableRows_()
          
 void tableRows(int[] justification, boolean grid)
          
 void text(String text)
          
 void title_()
          
 void verbatim_()
          
 void verbatim(boolean boxed)
          
protected  void verbatimContent(String text)
          Write Apt escaped text to output.
protected  void write(String text)
          Write text to output.
 
Methods inherited from class org.apache.maven.doxia.sink.SinkAdapter
author, body_, body, date, definitionListItem_, definitionListItem, figure_, figure, figureCaption, section1, section2, section3, section4, section5, sectionTitle_, sectionTitle, tableCell, tableHeaderCell, title
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AptSink

public AptSink(Writer writer)
Constructor, initialize the variables.

Parameters:
writer - The writer to write the result.
Method Detail

getBuffer

protected StringBuffer getBuffer()
Returns the buffer that holds the current text.

Returns:
A StringBuffer.

setHeadFlag

protected void setHeadFlag(boolean headFlag)
Used to determine whether we are in head mode.

Parameters:
headFlag - True for head mode.

resetState

protected void resetState()
Reset all variables.


resetBuffer

protected void resetBuffer()
Reset the StringBuffer.


resetTableCaptionBuffer

protected void resetTableCaptionBuffer()
Reset the TableCaptionBuffer.


head

public void head()

Specified by:
head in interface Sink

head_

public void head_()

Specified by:
head_ in interface Sink

title_

public void title_()

Specified by:
title_ in interface Sink

author_

public void author_()

Specified by:
author_ in interface Sink

date_

public void date_()

Specified by:
date_ in interface Sink

section1_

public void section1_()

Specified by:
section1_ in interface Sink

section2_

public void section2_()

Specified by:
section2_ in interface Sink

section3_

public void section3_()

Specified by:
section3_ in interface Sink

section4_

public void section4_()

Specified by:
section4_ in interface Sink

section5_

public void section5_()

Specified by:
section5_ in interface Sink

sectionTitle1

public void sectionTitle1()

Specified by:
sectionTitle1 in interface Sink

sectionTitle1_

public void sectionTitle1_()

Specified by:
sectionTitle1_ in interface Sink

sectionTitle2

public void sectionTitle2()

Specified by:
sectionTitle2 in interface Sink

sectionTitle2_

public void sectionTitle2_()

Specified by:
sectionTitle2_ in interface Sink

sectionTitle3

public void sectionTitle3()

Specified by:
sectionTitle3 in interface Sink

sectionTitle3_

public void sectionTitle3_()

Specified by:
sectionTitle3_ in interface Sink

sectionTitle4

public void sectionTitle4()

Specified by:
sectionTitle4 in interface Sink

sectionTitle4_

public void sectionTitle4_()

Specified by:
sectionTitle4_ in interface Sink

sectionTitle5

public void sectionTitle5()

Specified by:
sectionTitle5 in interface Sink

sectionTitle5_

public void sectionTitle5_()

Specified by:
sectionTitle5_ in interface Sink

list

public void list()

Specified by:
list in interface Sink

list_

public void list_()

Specified by:
list_ in interface Sink

listItem

public void listItem()

Specified by:
listItem in interface Sink

listItem_

public void listItem_()

Specified by:
listItem_ in interface Sink

numberedList

public void numberedList(int numbering)

Specified by:
numberedList in interface Sink

numberedList_

public void numberedList_()

Specified by:
numberedList_ in interface Sink

numberedListItem

public void numberedListItem()

Specified by:
numberedListItem in interface Sink

numberedListItem_

public void numberedListItem_()

Specified by:
numberedListItem_ in interface Sink

definitionList

public void definitionList()

Specified by:
definitionList in interface Sink

definitionList_

public void definitionList_()

Specified by:
definitionList_ in interface Sink

definedTerm

public void definedTerm()

Specified by:
definedTerm in interface Sink

definedTerm_

public void definedTerm_()

Specified by:
definedTerm_ in interface Sink

definition

public void definition()

Specified by:
definition in interface Sink

definition_

public void definition_()

Specified by:
definition_ in interface Sink

pageBreak

public void pageBreak()

Specified by:
pageBreak in interface Sink

paragraph

public void paragraph()

Specified by:
paragraph in interface Sink

paragraph_

public void paragraph_()

Specified by:
paragraph_ in interface Sink

verbatim

public void verbatim(boolean boxed)

Specified by:
verbatim in interface Sink

verbatim_

public void verbatim_()

Specified by:
verbatim_ in interface Sink

horizontalRule

public void horizontalRule()

Specified by:
horizontalRule in interface Sink

table

public void table()

Specified by:
table in interface Sink

table_

public void table_()

Specified by:
table_ in interface Sink

tableRows

public void tableRows(int[] justification,
                      boolean grid)

Specified by:
tableRows in interface Sink

tableRows_

public void tableRows_()

Specified by:
tableRows_ in interface Sink

tableRow

public void tableRow()

Specified by:
tableRow in interface Sink

tableRow_

public void tableRow_()

Specified by:
tableRow_ in interface Sink

tableCell

public void tableCell()

Specified by:
tableCell in interface Sink

tableHeaderCell

public void tableHeaderCell()

Specified by:
tableHeaderCell in interface Sink

tableCell

public void tableCell(boolean headerRow)
Starts a table cell.

Parameters:
headerRow - If this cell is part of a header row.

tableCell_

public void tableCell_()

Specified by:
tableCell_ in interface Sink

tableHeaderCell_

public void tableHeaderCell_()

Specified by:
tableHeaderCell_ in interface Sink

tableCaption

public void tableCaption()

Specified by:
tableCaption in interface Sink

tableCaption_

public void tableCaption_()

Specified by:
tableCaption_ in interface Sink

figureCaption_

public void figureCaption_()

Specified by:
figureCaption_ in interface Sink

figureGraphics

public void figureGraphics(String name)

Specified by:
figureGraphics in interface Sink

anchor

public void anchor(String name)

Specified by:
anchor in interface Sink

anchor_

public void anchor_()

Specified by:
anchor_ in interface Sink

link

public void link(String name)

Specified by:
link in interface Sink

link_

public void link_()

Specified by:
link_ in interface Sink

link

public void link(String name,
                 String target)
A link with a target.

Parameters:
name - The name of the link.
target - The link target.

italic

public void italic()

Specified by:
italic in interface Sink

italic_

public void italic_()

Specified by:
italic_ in interface Sink

bold

public void bold()

Specified by:
bold in interface Sink

bold_

public void bold_()

Specified by:
bold_ in interface Sink

monospaced

public void monospaced()

Specified by:
monospaced in interface Sink

monospaced_

public void monospaced_()

Specified by:
monospaced_ in interface Sink

lineBreak

public void lineBreak()

Specified by:
lineBreak in interface Sink

nonBreakingSpace

public void nonBreakingSpace()

Specified by:
nonBreakingSpace in interface Sink

text

public void text(String text)

Specified by:
text in interface Sink

rawText

public void rawText(String text)

Specified by:
rawText in interface Sink

write

protected void write(String text)
Write text to output.

Parameters:
text - The text to write.

content

protected void content(String text)
Write Apt escaped text to output.

Parameters:
text - The text to write.

verbatimContent

protected void verbatimContent(String text)
Write Apt escaped text to output.

Parameters:
text - The text to write.

encodeFragment

public static String encodeFragment(String text)
Forward to HtmlTools.encodeFragment( text ).

Parameters:
text - the String to fragment, may be null.
Returns:
the fragmented text, null if null String input.
See Also:
HtmlTools.encodeURL(String).

encodeURL

public static String encodeURL(String text)
Forward to HtmlTools.encodeURL( text ).

Parameters:
text - the String to encode, may be null.
Returns:
the text encoded, null if null String input.
See Also:
HtmlTools.encodeURL(String).

flush

public void flush()

Specified by:
flush in interface Sink

close

public void close()

Specified by:
close in interface Sink


Copyright © 2005-2009 The Apache Software Foundation. All Rights Reserved.