update copyright
[fedora-idea.git] / xml / impl / src / com / intellij / xml / util / CheckXmlFileWithXercesValidatorInspection.java
blob900ae8ed94556726919e7c157c261a9e43e05502
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.
17 package com.intellij.xml.util;
19 import com.intellij.codeHighlighting.HighlightDisplayLevel;
20 import com.intellij.codeInspection.XmlSuppressableInspectionTool;
21 import com.intellij.codeInspection.XmlInspectionGroupNames;
22 import com.intellij.codeInspection.ex.UnfairLocalInspectionTool;
23 import com.intellij.xml.XmlBundle;
24 import org.jetbrains.annotations.NonNls;
25 import org.jetbrains.annotations.NotNull;
27 /**
28 * @author Maxim Mossienko
30 public class CheckXmlFileWithXercesValidatorInspection extends XmlSuppressableInspectionTool implements UnfairLocalInspectionTool {
31 public static final @NonNls String SHORT_NAME = "CheckXmlFileWithXercesValidator";
33 public boolean isEnabledByDefault() {
34 return true;
37 @NotNull
38 public HighlightDisplayLevel getDefaultLevel() {
39 return HighlightDisplayLevel.ERROR;
42 @NotNull
43 public String getGroupDisplayName() {
44 return XmlInspectionGroupNames.XML_INSPECTIONS;
47 @NotNull
48 public String getDisplayName() {
49 return XmlBundle.message("xml.inspections.check.file.with.xerces");
52 @NotNull
53 @NonNls
54 public String getShortName() {
55 return SHORT_NAME;