/******************************************************************************* * Copyright (c) 2004 - 2006 Mylar committers 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 *******************************************************************************/ package com.itsolut.mantis.ui.editor; import org.eclipse.mylyn.commons.ui.CommonImages; import org.eclipse.mylyn.tasks.ui.ITasksUiConstants; import org.eclipse.mylyn.tasks.ui.TasksUiImages; import org.eclipse.mylyn.tasks.ui.TasksUiUtil; import org.eclipse.mylyn.tasks.ui.editors.AbstractTaskEditorPageFactory; import org.eclipse.mylyn.tasks.ui.editors.TaskEditor; import org.eclipse.mylyn.tasks.ui.editors.TaskEditorInput; import org.eclipse.swt.graphics.Image; import org.eclipse.ui.forms.editor.FormPage; import com.itsolut.mantis.core.MantisCorePlugin; /** * @author Steffen Pingel */ public class MantisTaskEditorPageFactory extends AbstractTaskEditorPageFactory { @Override public boolean canCreatePageFor(TaskEditorInput input) { if (input.getTask().getConnectorKind().equals( MantisCorePlugin.REPOSITORY_KIND) || TasksUiUtil.isOutgoingNewTask(input.getTask(), MantisCorePlugin.REPOSITORY_KIND)) { return true; } return false; } @Override public FormPage createPage(TaskEditor parentEditor) { return new MantisTaskEditorPage(parentEditor); } @Override public Image getPageImage() { return CommonImages.getImage(TasksUiImages.REPOSITORY); } @Override public String getPageText() { return "Mantis"; } @Override public int getPriority() { return PRIORITY_TASK; } @Override public String[] getConflictingIds(TaskEditorInput input) { return new String[] { ITasksUiConstants.ID_PAGE_PLANNING }; } }