/* * Copyright 2000-2013 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intellij.codeInspection; import com.intellij.psi.util.PsiUtilCore; import com.intellij.util.ArrayFactory; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.Comparator; /** * Base class for problems returned by local and global inspection tools. * * @author anna * @since 6.0 * @see InspectionManager#createProblemDescriptor(String, QuickFix[]) */ public interface CommonProblemDescriptor { Comparator<CommonProblemDescriptor> DESCRIPTOR_COMPARATOR = (c1, c2) -> { if (c1 instanceof ProblemDescriptor && c2 instanceof ProblemDescriptor) { int diff = ((ProblemDescriptor)c2).getLineNumber() - ((ProblemDescriptor)c1).getLineNumber(); if (diff != 0) { return diff; } diff = PsiUtilCore.compareElementsByPosition(((ProblemDescriptor)c2).getPsiElement(), ((ProblemDescriptor)c1).getPsiElement()); if (diff != 0) { return diff; } } return c1.getDescriptionTemplate().compareTo(c2.getDescriptionTemplate()); }; CommonProblemDescriptor[] EMPTY_ARRAY = new CommonProblemDescriptor[0]; ArrayFactory<CommonProblemDescriptor> ARRAY_FACTORY = count -> count == 0 ? EMPTY_ARRAY : new CommonProblemDescriptor[count]; /** * Returns the template from which the problem description is built. The template may * contain special markers: {@code #ref} is replaced with the text of the element * in which the problem has been found, and {@code #loc} is replaced with the filename * and line number in exported inspection results and ignored when viewing within IDEA. * * @return the template for the problem description. */ @NotNull String getDescriptionTemplate(); /** * Returns the quickfixes for the problem. * * @return the list of quickfixes registered for the problem. */ @Nullable QuickFix[] getFixes(); }