blob: 40c09091b5a50bb3b9d6d268aa9ce4371651df00 [file] [log] [blame]
/*
* Copyright 2000-2009 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.refactoring.inline;
import com.intellij.psi.*;
import com.intellij.refactoring.RefactoringBundle;
import com.intellij.usageView.UsageViewBundle;
import com.intellij.usageView.UsageViewDescriptor;
import org.jetbrains.annotations.NotNull;
class InlineViewDescriptor implements UsageViewDescriptor{
private final PsiElement myElement;
public InlineViewDescriptor(PsiElement element) {
myElement = element;
}
@NotNull
public PsiElement[] getElements() {
return new PsiElement[] {myElement};
}
public String getProcessedElementsHeader() {
if (myElement instanceof PsiField) {
return RefactoringBundle.message("inline.field.elements.header");
}
if (myElement instanceof PsiVariable) {
return RefactoringBundle.message("inline.vars.elements.header");
}
if (myElement instanceof PsiClass) {
return RefactoringBundle.message("inline.class.elements.header");
}
if (myElement instanceof PsiMethod) {
return RefactoringBundle.message("inline.method.elements.header");
}
return "Unknown element";
}
public String getCodeReferencesText(int usagesCount, int filesCount) {
return RefactoringBundle.message("invocations.to.be.inlined", UsageViewBundle.getReferencesString(usagesCount, filesCount));
}
public String getCommentReferencesText(int usagesCount, int filesCount) {
return RefactoringBundle.message("comments.elements.header",
UsageViewBundle.getOccurencesString(usagesCount, filesCount));
}
}