blob: b0fc5641df3db7c044838f5db53f5d98ce8e21d5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Mylyn project 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 org.eclipse.mylyn.team.ui;
/**
* @author Eugene Kuleshov
* @author Mik Kersten
* @since 3.0
*/
public abstract class AbstractTaskReference {
public abstract String getTaskId();
public abstract String getTaskUrl();
public abstract String getRepositoryUrl();
public abstract String getText();
}