blob: d0294886b562f63b583165f0a9341112c423f6da [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Eugene Kuleshov 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:
* Eugene Kuleshov - initial API and implementation
* Tasktop Technologies - improvements
*******************************************************************************/
package org.eclipse.mylyn.tasks.ui;
import java.text.MessageFormat;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.text.IRegion;
import org.eclipse.jface.text.hyperlink.IHyperlink;
import org.eclipse.mylyn.internal.tasks.ui.Messages;
import org.eclipse.mylyn.tasks.core.TaskRepository;
/**
* Immutable. Encapsulates information for linking to tasks from text.
*
* @author Eugene Kuleshov
* @author Steffen Pingel
* @noextend This class is not intended to be subclassed by clients.
*/
public final class TaskHyperlink implements IHyperlink {
private final IRegion region;
private final TaskRepository repository;
private final String taskId;
public TaskHyperlink(IRegion region, TaskRepository repository, String taskId) {
this.region = region;
this.repository = repository;
this.taskId = taskId;
}
public IRegion getHyperlinkRegion() {
return region;
}
public String getTaskId() {
return taskId;
}
public String getTypeLabel() {
return null;
}
/**
* @Since 2.1
* @return
*/
public TaskRepository getRepository() {
return repository;
}
public String getHyperlinkText() {
return MessageFormat.format(Messages.TaskHyperlink_Open_Task_X_in_X, taskId, repository.getRepositoryLabel());
}
public void open() {
if (repository != null) {
TasksUiUtil.openTask(repository, taskId);
} else {
MessageDialog.openError(null, "Mylyn", Messages.TaskHyperlink_Could_not_determine_repository_for_report); //$NON-NLS-1$
}
}
}