Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: e0db46e657c0c1f3c2d33b26694af6706c855218 (plain) (tree)
1
2
3
4
5
6
7
8
                                                                                
                                                            
                                                                   
                                                                        
                                                           


                                         




                                                                                 
                                                 
 


                                                                   




                                                                                        

                                           
 
/*******************************************************************************
 * Copyright (c) 2013, 2015 Tasktop Technologies and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     David Green - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylyn.wikitext.html.internal;

import org.eclipse.mylyn.wikitext.parser.Attributes;
import org.eclipse.mylyn.wikitext.parser.DocumentBuilder;
import org.eclipse.mylyn.wikitext.parser.DocumentBuilder.BlockType;

interface BlockStrategy {
	void beginBlock(DocumentBuilder builder, BlockType type, Attributes attributes);

	void endBlock(DocumentBuilder builder);

	BlockSeparator trailingSeparator();
}

Back to the top