blob: 5637669abce6120522e4395af8ba2e8993f42026 [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.bugs.wizards;
import org.eclipse.core.runtime.IBundleGroup;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
/**
* @author Steffen Pingel
*/
public class FeatureStatus extends Status {
private final IBundleGroup bundleGroup;
public FeatureStatus(IBundleGroup bundleGroup) {
super(IStatus.INFO, bundleGroup.getIdentifier(), "");
this.bundleGroup = bundleGroup;
}
public IBundleGroup getBundleGroup() {
return bundleGroup;
}
}