blob: 9cdfb7f98f10986f891d2e2eda2082cfeb2d371b [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.util.xml.highlighting;
import com.intellij.codeInspection.LocalQuickFix;
import com.intellij.lang.annotation.HighlightSeverity;
import com.intellij.util.xml.DomElement;
import com.intellij.util.xml.reflect.DomCollectionChildDescription;
/**
* @author peter
*/
public class DomCollectionProblemDescriptorImpl extends DomElementProblemDescriptorImpl implements DomCollectionProblemDescriptor {
private final DomCollectionChildDescription myChildDescription;
public DomCollectionProblemDescriptorImpl(final DomElement domElement,
final String message,
final HighlightSeverity type,
final DomCollectionChildDescription childDescription) {
super(domElement, message, type);
myChildDescription = childDescription;
}
public DomCollectionProblemDescriptorImpl(final DomElement domElement,
final String message,
final HighlightSeverity type,
final DomCollectionChildDescription childDescription,
final LocalQuickFix... fixes) {
super(domElement, message, type, fixes);
myChildDescription = childDescription;
}
public String toString() {
return super.toString() + "; " + myChildDescription;
}
@Override
public DomCollectionChildDescription getChildDescription() {
return myChildDescription;
}
}