update copyright
[fedora-idea.git] / plugins / properties / src / com / intellij / lang / properties / RemovePropertyLocalFix.java
blobac42254fac79d414f23210311e17a84b2af25162
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.lang.properties;
18 import com.intellij.codeInspection.LocalQuickFix;
19 import com.intellij.codeInspection.ProblemDescriptor;
20 import com.intellij.openapi.project.Project;
21 import com.intellij.openapi.diagnostic.Logger;
22 import com.intellij.psi.PsiElement;
23 import com.intellij.psi.util.PsiTreeUtil;
24 import com.intellij.lang.properties.psi.Property;
25 import com.intellij.util.IncorrectOperationException;
26 import org.jetbrains.annotations.NotNull;
28 /**
29 * @author cdr
31 public class RemovePropertyLocalFix implements LocalQuickFix {
32 private static final Logger LOG = Logger.getInstance("#com.intellij.lang.properties.RemovePropertyLocalFix");
33 public static final RemovePropertyLocalFix INSTANCE = new RemovePropertyLocalFix();
35 @NotNull
36 public String getName() {
37 return PropertiesBundle.message("remove.property.quick.fix.name");
40 public void applyFix(@NotNull Project project, @NotNull ProblemDescriptor descriptor) {
41 PsiElement element = descriptor.getPsiElement();
42 Property property = PsiTreeUtil.getParentOfType(element, Property.class, false);
43 if (property == null) return;
44 try {
45 new RemovePropertyFix(property).invoke(project, null, property.getContainingFile());
47 catch (IncorrectOperationException e) {
48 LOG.error(e);
52 @NotNull
53 public String getFamilyName() {
54 return getName();