blob: 9ddf63bafa5d7286e5d4eef055bc388a14001869 [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.internal.tasks.core;
import org.eclipse.mylyn.tasks.core.ITask.PriorityLevel;
/**
* Category created for the user to hold uncategorized tasks.
*
* @author Rob Elves
*/
public class UncategorizedTaskContainer extends AbstractTaskCategory {
public static final String LABEL = "Uncategorized";
public static final String HANDLE = LABEL;
public UncategorizedTaskContainer() {
super(HANDLE);
}
@Override
public String getPriority() {
return PriorityLevel.P1.toString();
}
@Override
public String getHandleIdentifier() {
return HANDLE;
}
@Override
public String getSummary() {
return LABEL;
}
@Override
public boolean isUserManaged() {
return false;
}
}