update copyright
[fedora-idea.git] / plugins / ui-designer / src / com / intellij / uiDesigner / quickFixes / QuickFix.java
blob98b36b0e299fccefdb36612dc63c1fe0a1d926ca
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package com.intellij.uiDesigner.quickFixes;
18 import com.intellij.uiDesigner.designSurface.GuiEditor;
19 import com.intellij.uiDesigner.radComponents.RadComponent;
20 import org.jetbrains.annotations.NotNull;
21 import org.jetbrains.annotations.Nullable;
23 /**
24 * @author Anton Katilin
25 * @author Vladimir Kondratyev
27 public abstract class QuickFix {
28 public static final QuickFix[] EMPTY_ARRAY = new QuickFix[]{};
30 protected final GuiEditor myEditor;
31 private final String myName;
32 protected RadComponent myComponent;
34 public QuickFix(@NotNull final GuiEditor editor, @NotNull final String name, @Nullable RadComponent component) {
35 myEditor = editor;
36 myName = name;
37 myComponent = component;
40 /**
41 * @return name of the quick fix.
43 @NotNull public final String getName() {
44 return myName;
47 public abstract void run();
49 public RadComponent getComponent() {
50 return myComponent;