Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cfd5dd694763d24aff17761a969a02ca1c3c4cda (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*******************************************************************************
 * Copyright (c) 2013 Stefan Seelmann 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:
 *     Stefan Seelmann - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylyn.internal.wikitext.markdown.core.block;

import org.eclipse.mylyn.wikitext.core.parser.markup.Block;

/**
 * Block that can be nested within a {@link QuoteBlock}.
 * 
 * @author Stefan Seelmann
 */
public abstract class NestableBlock extends Block {

	@Override
	public int processLine(String line, int offset) {
		return processLineContent(line, offset);
	}

	@Override
	public NestableBlock clone() {
		return (NestableBlock) super.clone();
	}
}

Back to the top