source: default/trunk/de.ugoe.cs.swe.bnftools.ebnf.ui/src/de/ugoe/cs/swe/bnftools/ui/formatter/FormatterRefactoring.java @ 8

Last change on this file since 8 was 8, checked in by zeiss, 14 years ago
  • Property svn:mime-type set to text/plain
File size: 547 bytes
Line 
1package de.ugoe.cs.swe.bnftools.ui.formatter;
2
3import org.eclipse.ltk.core.refactoring.participants.ProcessorBasedRefactoring;
4import org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor;
5
6public class FormatterRefactoring extends ProcessorBasedRefactoring {
7
8        private RefactoringProcessor processor;
9
10        public FormatterRefactoring(RefactoringProcessor processor) {
11                super(processor);
12                this.processor = (RefactoringProcessor) processor;
13        }
14
15        public RefactoringProcessor getProcessor() {
16                return processor;
17        }
18
19}
Note: See TracBrowser for help on using the repository browser.