update copyright
[fedora-idea.git] / xml / dom-openapi / src / com / intellij / util / xml / highlighting / DomElementsProblemsHolder.java
blob70d3926a69e65858af4dec68da8ad371da24fde5
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.util.xml.highlighting;
19 import com.intellij.lang.annotation.HighlightSeverity;
20 import com.intellij.util.xml.DomElement;
21 import org.jetbrains.annotations.NotNull;
23 import java.util.List;
25 public interface DomElementsProblemsHolder {
27 List<DomElementProblemDescriptor> getProblems(DomElement domElement);
29 @Deprecated
30 List<DomElementProblemDescriptor> getProblems(DomElement domElement, boolean includeXmlProblems);
32 /**
34 * @param domElement domElement
35 * @param includeXmlProblems IGNORED
36 * @param withChildren include children problems
37 * @return problems
39 List<DomElementProblemDescriptor> getProblems(DomElement domElement, boolean includeXmlProblems, boolean withChildren);
41 @Deprecated
42 List<DomElementProblemDescriptor> getProblems(DomElement domElement,
43 final boolean includeXmlProblems,
44 final boolean withChildren,
45 HighlightSeverity minSeverity);
47 List<DomElementProblemDescriptor> getProblems(DomElement domElement,
48 final boolean withChildren,
49 HighlightSeverity minSeverity);
51 List<DomElementProblemDescriptor> getAllProblems();
53 List<DomElementProblemDescriptor> getAllProblems(@NotNull DomElementsInspection inspection);
55 boolean isInspectionCompleted(@NotNull DomElementsInspection inspection);