blob: a08c4e1e30c36434a31f82ded5ae7348133f3f6d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies 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:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.tasks.core;
import java.util.Collection;
import java.util.Set;
import org.eclipse.mylyn.tasks.core.ITask;
/**
* Minimal task list interface required for externalization.
*
* @author Steffen Pingel
*/
public interface ITransferList {
public abstract void addCategory(TaskCategory category);
public abstract void addQuery(RepositoryQuery query);
public abstract void addTask(ITask task);
public abstract boolean addTask(ITask task, AbstractTaskContainer parentContainer);
public AbstractTaskCategory getContainerForHandle(String handle);
public abstract Collection<AbstractTask> getAllTasks();
public abstract Set<AbstractTaskCategory> getCategories();
public abstract Set<RepositoryQuery> getQueries();
public AbstractTask getTask(String handleIdentifier);
public abstract ITask getTask(String repositoryUrl, String taskId);
}