~ubuntu-branches/ubuntu/trusty/eclipse-linuxtools/trusty

« back to all changes in this revision

Viewing changes to lttng/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/project/wizards/ImportTraceWizard.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2013-05-13 21:43:22 UTC
  • mfrom: (1.2.1) (2.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130513214322-6frgd9du1n0w2uo7
Tags: 1.2.1-1
* Team upload.
* New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*******************************************************************************
2
2
 * Copyright (c) 2010, 2011, 2012 Ericsson
3
 
 * 
 
3
 *
4
4
 * All rights reserved. This program and the accompanying materials are
5
5
 * made available under the terms of the Eclipse Public License v1.0 which
6
6
 * accompanies this distribution, and is available at
7
7
 * http://www.eclipse.org/legal/epl-v10.html
8
 
 * 
 
8
 *
9
9
 * Contributors:
10
10
 *   Francois Chouinard - Initial API and implementation
11
11
 *******************************************************************************/
22
22
import org.eclipse.ui.IImportWizard;
23
23
import org.eclipse.ui.IWorkbench;
24
24
import org.eclipse.ui.ide.IDE;
 
25
import org.eclipse.ui.plugin.AbstractUIPlugin;
25
26
 
26
27
/**
27
28
 * The import trace wizard implementation.
81
82
        }
82
83
 
83
84
        setWindowTitle(Messages.ImportTraceWizard_DialogTitle);
84
 
        setDefaultPageImageDescriptor(Activator.imageDescriptorFromPlugin(PLUGIN_ID, ICON_PATH));
 
85
        setDefaultPageImageDescriptor(AbstractUIPlugin.imageDescriptorFromPlugin(PLUGIN_ID, ICON_PATH));
85
86
        setNeedsProgressMonitor(true);
86
87
    }
87
88
 
95
96
        fTraceImportWizardPage = new ImportTraceWizardPage(fWorkbench, fSelection);
96
97
        addPage(fTraceImportWizardPage);
97
98
    }
98
 
    
 
99
 
99
100
    /*
100
101
     * (non-Javadoc)
101
102
     * @see org.eclipse.jface.wizard.Wizard#performFinish()