View Javadoc

1   
2   /*******************************************************************************
3    * Copyright (c) 2005-2006 Polarion Software.
4    * All rights reserved. This program and the accompanying materials
5    * are made available under the terms of the Eclipse Public License v1.0
6    * which accompanies this distribution, and is available at
7    * http://www.eclipse.org/legal/epl-v10.html
8    *
9    * Contributors:
10   *    Alexander Gurov (Polarion Software) - initial API and implementation
11   *******************************************************************************/
12  
13  package com.atlassian.theplugin.eclipse.ui.panel.reporting;
14  
15  import com.atlassian.theplugin.eclipse.preferences.Activator;
16  
17  /**
18   * Preview any product quality report panel
19   * 
20   * @author Alexander Gurov
21   */
22  public class PreviewReportPanel extends PreviewPanel {
23  	public PreviewReportPanel(String description, String report) {
24  		super(Activator.getDefault().getResource("PreviewReportPanel.Preview"), description, 
25  				Activator.getDefault().getResource("PreviewReportPanel.Message"), report);
26  	}
27  	
28  	public String getHelpId() {
29      	return "org.eclipse.team.svn.help.previewReportDialogContext";
30  	}	
31  }