|
Lines 1-5
Link Here
|
| 1 |
/******************************************************************************* |
1 |
/******************************************************************************* |
| 2 |
* Copyright (c) 2007 IBM Corporation and others. |
2 |
* Copyright (c) 2007, 2008 IBM Corporation and others. |
| 3 |
* All rights reserved. This program and the accompanying materials |
3 |
* All rights reserved. This program and the accompanying materials |
| 4 |
* are made available under the terms of the Eclipse Public License v1.0 |
4 |
* are made available under the terms of the Eclipse Public License v1.0 |
| 5 |
* which accompanies this distribution, and is available at |
5 |
* which accompanies this distribution, and is available at |
|
Lines 29-34
Link Here
|
| 29 |
import org.eclipse.emf.common.util.BasicEList; |
29 |
import org.eclipse.emf.common.util.BasicEList; |
| 30 |
import org.eclipse.emf.common.util.EList; |
30 |
import org.eclipse.emf.common.util.EList; |
| 31 |
import org.eclipse.hyades.models.common.export.util.impl.TPFTestSuiteSerializer; |
31 |
import org.eclipse.hyades.models.common.export.util.impl.TPFTestSuiteSerializer; |
|
|
32 |
import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle; |
| 32 |
import org.eclipse.hyades.test.ui.navigator.ITestSuiteProxyNode; |
33 |
import org.eclipse.hyades.test.ui.navigator.ITestSuiteProxyNode; |
| 33 |
import org.eclipse.hyades.ui.report.ReportGeneratorWizard; |
34 |
import org.eclipse.hyades.ui.report.ReportGeneratorWizard; |
| 34 |
import org.eclipse.jface.viewers.ISelection; |
35 |
import org.eclipse.jface.viewers.ISelection; |
|
Lines 51-57
Link Here
|
| 51 |
* |
52 |
* |
| 52 |
* @author Sheldon Lee-Loy |
53 |
* @author Sheldon Lee-Loy |
| 53 |
* @author Paul E. Slauenwhite |
54 |
* @author Paul E. Slauenwhite |
| 54 |
* @version December 6, 2007 |
55 |
* @author Tony Wang |
|
|
56 |
* @version March 7, 2008 |
| 55 |
* @since December 6, 2007 |
57 |
* @since December 6, 2007 |
| 56 |
*/ |
58 |
*/ |
| 57 |
public class ReportXMLLogWizard extends ReportGeneratorWizard { |
59 |
public class ReportXMLLogWizard extends ReportGeneratorWizard { |
|
Lines 64-69
Link Here
|
| 64 |
|
66 |
|
| 65 |
public ReportXMLLogWizard() { |
67 |
public ReportXMLLogWizard() { |
| 66 |
super(); |
68 |
super(); |
|
|
69 |
setWindowTitle(UiPluginResourceBundle.XML_REPORT_TITLE); |
| 67 |
} |
70 |
} |
| 68 |
|
71 |
|
| 69 |
/** |
72 |
/** |
|
Lines 236-242
Link Here
|
| 236 |
reportWindowInputWizardPage = new ReportWindowWizardPage(); |
239 |
reportWindowInputWizardPage = new ReportWindowWizardPage(); |
| 237 |
locationPage = new LocationPage("location", adjustLocation()); //$NON-NLS-1$ |
240 |
locationPage = new LocationPage("location", adjustLocation()); //$NON-NLS-1$ |
| 238 |
locationPage.setTitle("Report"); //$NON-NLS-1$ |
241 |
locationPage.setTitle("Report"); //$NON-NLS-1$ |
| 239 |
locationPage.setDescription("Define the name and location of the Report."); //$NON-NLS-1$ |
242 |
locationPage.setDescription("Define the name and location of the report."); //$NON-NLS-1$ |
| 240 |
locationPage.setFileExtension(FILE_EXTENSION); |
243 |
locationPage.setFileExtension(FILE_EXTENSION); |
| 241 |
} |
244 |
} |
| 242 |
|
245 |
|