source: default/trunk/de.ugoe.cs.swe.bnftools.ebnf.ui/src/de/ugoe/cs/swe/bnftools/ui/refactoring/generic/GenericRefactoringWizard.java @ 5

Last change on this file since 5 was 5, checked in by zeiss, 14 years ago
  • Property svn:mime-type set to text/plain
File size: 493 bytes
Line 
1package de.ugoe.cs.swe.bnftools.ui.refactoring.generic;
2
3import org.eclipse.ltk.core.refactoring.Refactoring;
4import org.eclipse.ltk.ui.refactoring.RefactoringWizard;
5
6public class GenericRefactoringWizard extends RefactoringWizard {
7
8        public GenericRefactoringWizard(Refactoring refactoring, int flags) {
9                super(refactoring, flags);
10        }
11
12        // ---------------------------------------------------------------------------
13
14        @Override
15        protected void addUserInputPages() {
16        }
17
18}
Note: See TracBrowser for help on using the repository browser.