blob: b62c057eabcbd3f10da8d66df3ad8c997f9c64ef [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:
* Eugen Kuleshov - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.tasks.core;
/**
* NOTE: this class is likely to change or become API for 3.0
*
* @author Eugene Kuleshov
* @since 2.1
*/
public class TaskGroup extends AbstractTaskContainer {
private final String summary;
private final String groupBy;
public TaskGroup(String parentHandle, String summary, String groupBy) {
super(parentHandle + summary);
this.summary = summary;
this.groupBy = groupBy;
}
@Override
public String getSummary() {
return summary;
}
@Override
public boolean isUserManaged() {
return false;
}
public String getGroupBy() {
return groupBy;
}
}