~ubuntu-branches/ubuntu/vivid/doxia/vivid-proposed

« back to all changes in this revision

Viewing changes to doxia-modules/doxia-module-twiki/src/main/java/org/apache/maven/doxia/module/twiki/parser/TableCellBlock.java

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-10-08 14:20:22 UTC
  • mfrom: (2.3.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091008142022-f6ccxganfr2tbaig
Tags: 1.1-3build1
Upload to karmic, avoiding new version from unstable. LP: #443292.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
import org.apache.maven.doxia.sink.Sink;
23
23
 
24
 
 
25
24
/**
26
25
 * Table cell
27
26
 *
28
27
 * @author Juan F. Codagnone
29
 
 * @since Nov 10, 2005
 
28
 * @version $Id: TableCellBlock.java 705065 2008-10-15 21:46:08Z vsiveton $
30
29
 */
31
 
public class TableCellBlock extends AbstractFatherBlock
 
30
class TableCellBlock
 
31
    extends AbstractFatherBlock
32
32
{
33
 
 
34
33
    /**
35
34
     * Creates the TableCellBlock.
36
35
     *
37
36
     * @param childBlocks childrens
38
37
     */
39
 
    public TableCellBlock( final Block [] childBlocks )
 
38
    TableCellBlock( final Block[] childBlocks )
40
39
    {
41
40
        super( childBlocks );
42
41
    }
43
42
 
44
 
    /**
45
 
     * @see AbstractFatherBlock#before(org.apache.maven.doxia.sink.Sink)
46
 
     */
47
 
    
48
 
    public final void before( final Sink sink )
 
43
    /** {@inheritDoc} */
 
44
    final void before( final Sink sink )
49
45
    {
50
46
        sink.tableCell();
51
47
    }
52
48
 
53
 
    /**
54
 
     * @see AbstractFatherBlock#after(org.apache.maven.doxia.sink.Sink)
55
 
     */
56
 
    
57
 
    public final void after( final Sink sink )
 
49
    /** {@inheritDoc} */
 
50
    final void after( final Sink sink )
58
51
    {
59
52
        sink.tableCell_();
60
53
    }