blob: 5c1aef9655b503b7a6c892458536faced2b8377a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 - 2006 University Of British Columbia 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:
* University Of British Columbia - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.bugzilla.ui.wizard;
import org.eclipse.mylyn.internal.bugzilla.core.IBugzillaConstants;
import org.eclipse.mylyn.internal.bugzilla.ui.BugzillaUiPlugin;
import org.eclipse.ui.IWorkbench;
/**
* Wizard page shown when the user has chosen a product to log a bug for.
*
* @author Mik Kersten
*/
public class WizardAttributesPage extends AbstractBugzillaWizardPage {
private static final String DESCRIPTION = "Enter Bugzilla report details";
public WizardAttributesPage(IWorkbench workbench) {
super("Page2", IBugzillaConstants.TITLE_NEW_BUG, DESCRIPTION, workbench);
setImageDescriptor(BugzillaUiPlugin.imageDescriptorFromPlugin("org.eclipse.mylyn.bugzilla.ui",
"icons/wizban/bug-wizard.gif"));
}
}