/******************************************************************************* * Copyright (c) 2013 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.internal.wikitext; import static com.google.common.base.Preconditions.checkNotNull; import org.eclipse.mylyn.wikitext.parser.MarkupParser; import org.eclipse.mylyn.wikitext.parser.markup.MarkupLanguage; public class MockMarkupLanguage extends MarkupLanguage { public MockMarkupLanguage() { this(MockMarkupLanguage.class.getSimpleName()); } public MockMarkupLanguage(String name) { setName(checkNotNull(name)); } @Override public void processContent(MarkupParser parser, String markupContent, boolean asDocument) { throw new UnsupportedOperationException(); } }