blob: 6a1bbfc901515d7c7a5fda957617278d0631877f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2014 Tasktop Technologies and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.tasks.tests.ui.editor;
import org.eclipse.jface.text.source.SourceViewer;
import org.eclipse.mylyn.tasks.core.TaskRepository;
import org.eclipse.mylyn.tasks.ui.editors.AbstractTaskEditorExtension;
import org.eclipse.swt.widgets.Composite;
/**
* @author Leo Dos Santos
*/
public class MockWikiEditorExtension extends AbstractTaskEditorExtension {
@Deprecated
@Override
public SourceViewer createViewer(TaskRepository taskRepository, Composite parent, int style) {
return null;
}
@Deprecated
@Override
public SourceViewer createEditor(TaskRepository taskRepository, Composite parent, int style) {
// ignore
return null;
}
@Override
public String getEditorContextId() {
// ignore
return null;
}
}