/******************************************************************************* * Copyright (c) 2007, 2009 David Green and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * David Green - initial API and implementation *******************************************************************************/ package org.eclipse.mylyn.wikitext.tracwiki.internal.block; import org.eclipse.mylyn.wikitext.parser.Attributes; import org.eclipse.mylyn.wikitext.parser.DocumentBuilder.BlockType; import org.eclipse.mylyn.wikitext.parser.markup.Block; import org.eclipse.mylyn.wikitext.tracwiki.TracWikiLanguage; /** * Matches any textile text, including lines starting with <code>p. </code>. * * @author David Green */ public class ParagraphBlock extends Block { private int blockLineCount = 0; public ParagraphBlock() { } @Override public int processLineContent(String line, int offset) { if (blockLineCount == 0) { Attributes attributes = new Attributes(); builder.beginBlock(BlockType.PARAGRAPH, attributes); } if (markupLanguage.isEmptyLine(line)) { setClosed(true); return -1; } ++blockLineCount; TracWikiLanguage markupLanguage = (TracWikiLanguage) getMarkupLanguage(); // paragraphs can have nested lists and other things for (Block block : markupLanguage.getParagraphBreakingBlocks()) { if (block.canStart(line, offset)) { setClosed(true); return 0; } } if (blockLineCount != 1) { // note: newlines don't automatically convert to line breaks builder.characters("\n"); //$NON-NLS-1$ } markupLanguage.emitMarkupLine(getParser(), state, line, offset); return -1; } @Override public boolean canStart(String line, int lineOffset) { blockLineCount = 0; return true; } @Override public void setClosed(boolean closed) { if (closed && !isClosed()) { builder.endBlock(); } super.setClosed(closed); } }