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

« back to all changes in this revision

Viewing changes to systemtap/org.eclipse.linuxtools.systemtap.ui.graphingapi.ui/src/org/eclipse/linuxtools/systemtap/ui/graphingapi/ui/wizards/filter/SelectFilterWizard.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:
30
30
        public void init(IWorkbench workbench, IStructuredSelection selection) {
31
31
        }
32
32
        
 
33
        @Override
33
34
        public void addPages() {
34
35
                setWindowTitle(Localization.getString("SelectFilterWizard.CreateFilter"));
35
36
                selectFilterPage = new SelectFilterWizardPage();
42
43
                }
43
44
        }
44
45
        
 
46
        @Override
45
47
        public boolean canFinish() {
46
48
                IWizardPage page = this.getContainer().getCurrentPage(); 
47
49
                if((null != filter) && (page instanceof FilterWizardPage))
49
51
                return false;
50
52
        }
51
53
 
 
54
        @Override
52
55
        public boolean performCancel() {
53
56
                return true;
54
57
        }
55
58
        
 
59
        @Override
56
60
        public boolean performFinish() {
57
61
                return true;
58
62
        }
61
65
                return filter;
62
66
        }
63
67
        
 
68
        @Override
64
69
        public void dispose() {
65
70
                if(null != selectFilterPage)
66
71
                        selectFilterPage.dispose();