IDEADEV-14701 && IDEADEV-14703
[fedora-idea.git] / dom / openapi / src / com / intellij / util / xml / highlighting / DomElementProblemDescriptor.java
blob91f8597ce0552755abe3dec7a5563d68d524db9b
1 /*
2 * Copyright 2000-2006 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.
18 package com.intellij.util.xml.highlighting;
20 import com.intellij.codeInspection.CommonProblemDescriptor;
21 import com.intellij.codeInspection.LocalQuickFix;
22 import com.intellij.lang.annotation.Annotation;
23 import com.intellij.lang.annotation.HighlightSeverity;
24 import com.intellij.openapi.util.TextRange;
25 import com.intellij.util.xml.DomElement;
26 import org.jetbrains.annotations.NotNull;
27 import org.jetbrains.annotations.Nullable;
29 import java.util.List;
31 public interface DomElementProblemDescriptor extends CommonProblemDescriptor {
33 enum HighlightingType { START_TAG_NAME, WHOLE_ELEMENT
36 @NotNull
37 DomElement getDomElement();
38 @NotNull
39 HighlightSeverity getHighlightSeverity();
40 @NotNull
41 LocalQuickFix[] getFixes();
42 @NotNull
43 List<Annotation> getAnnotations();
45 void setHighlightingType(HighlightingType highlightingType);
47 HighlightingType getHighlightingType();
49 @Nullable
50 TextRange getTextRange();