blob: 47826735ec3366ed1820a36cf512f9ced39d924e [file] [log] [blame]
/*
* Copyright 2000-2014 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.profile.codeInspection.ui;
import com.intellij.codeInspection.ex.Descriptor;
import com.intellij.codeInspection.ex.InspectionProfileImpl;
import com.intellij.codeInspection.ex.InspectionToolWrapper;
import com.intellij.codeInspection.ex.ScopeToolState;
import com.intellij.openapi.project.Project;
import org.jetbrains.annotations.NotNull;
import java.util.ArrayList;
import java.util.List;
/**
* @author Dmitry Batkovich
*/
public class ToolDescriptors {
@NotNull
private final Descriptor myDefaultDescriptor;
@NotNull
private final List<Descriptor> myNonDefaultDescriptors;
private ToolDescriptors(final @NotNull Descriptor defaultDescriptor,
final @NotNull List<Descriptor> nonDefaultDescriptors) {
myDefaultDescriptor = defaultDescriptor;
myNonDefaultDescriptors = nonDefaultDescriptors;
}
public static ToolDescriptors fromScopeToolState(final ScopeToolState state,
final InspectionProfileImpl profile,
final Project project) {
final InspectionToolWrapper toolWrapper = state.getTool();
final List<ScopeToolState> nonDefaultTools = profile.getNonDefaultTools(toolWrapper.getShortName(), project);
final ArrayList<Descriptor> descriptors = new ArrayList<Descriptor>(nonDefaultTools.size());
for (final ScopeToolState nonDefaultToolState : nonDefaultTools) {
descriptors.add(new Descriptor(nonDefaultToolState, profile, project));
}
return new ToolDescriptors(new Descriptor(state, profile, project), descriptors);
}
@NotNull
public Descriptor getDefaultDescriptor() {
return myDefaultDescriptor;
}
@NotNull
public List<Descriptor> getNonDefaultDescriptors() {
return myNonDefaultDescriptors;
}
@NotNull
public ScopeToolState getDefaultScopeToolState() {
return myDefaultDescriptor.getState();
}
}