tmf: Fix some Sonar warnings in the state system code
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / internal / tmf / ui / parsers / wizards / CustomTxtParserWizard.java
CommitLineData
a0a88f65
AM
1/*******************************************************************************
2 * Copyright (c) 2013 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Patrick Tassé - Initial API and implementation
11 *******************************************************************************/
12
be222f56
PT
13package org.eclipse.linuxtools.internal.tmf.ui.parsers.wizards;
14
15import org.eclipse.jface.viewers.ISelection;
16import org.eclipse.jface.viewers.IStructuredSelection;
17import org.eclipse.jface.wizard.Wizard;
18import org.eclipse.linuxtools.internal.tmf.ui.parsers.custom.CustomTxtTraceDefinition;
19import org.eclipse.ui.INewWizard;
20import org.eclipse.ui.IWorkbench;
21
a0a88f65
AM
22/**
23 * Wizard for custom text trace parsers.
24 *
25 * @author Patrick Tassé
26 */
be222f56
PT
27public class CustomTxtParserWizard extends Wizard implements INewWizard {
28
29 CustomTxtParserInputWizardPage inputPage;
30 CustomTxtParserOutputWizardPage outputPage;
31 private ISelection selection;
32 CustomTxtTraceDefinition definition;
33
a0a88f65
AM
34 /**
35 * Default constructor
36 */
be222f56
PT
37 public CustomTxtParserWizard() {
38 super();
39 }
40
a0a88f65
AM
41 /**
42 * Constructor
43 *
44 * @param definition
45 * The trace definition
46 */
be222f56
PT
47 public CustomTxtParserWizard(CustomTxtTraceDefinition definition) {
48 super();
49 this.definition = definition;
50 }
51
52 @Override
53 public boolean performFinish() {
54 CustomTxtTraceDefinition def = outputPage.getDefinition();
55 if (definition != null && !definition.definitionName.equals(def.definitionName)) {
56 CustomTxtTraceDefinition.delete(definition.definitionName);
57 }
58 def.save();
59 return true;
60 }
61
be222f56 62 @Override
a0a88f65 63 public void addPages() {
be222f56
PT
64 inputPage = new CustomTxtParserInputWizardPage(selection, definition);
65 addPage(inputPage);
66 outputPage = new CustomTxtParserOutputWizardPage(this);
67 addPage(outputPage);
68 }
69
a0a88f65 70 @Override
3dca7aa5
AM
71 public void init(IWorkbench workbench, IStructuredSelection sel) {
72 this.selection = sel;
be222f56
PT
73 }
74
75}
This page took 0.040694 seconds and 5 git commands to generate.