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


                                                                                
                                                                        
                                                           


                                         




                                                                                 
                                                 
 
                                                    




                                                                        
/*******************************************************************************
 * Copyright (c) 2014 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;

public interface ElementMatcher<ElementType extends Enum<ElementType>> {

	boolean matches(ElementType elementType, Attributes attributes);
}

Back to the top