blob: c3b6635d0ae4deea1563999935dfd1c32e25cfb1 [file] [log] [blame]
/*
* Copyright 2000-2011 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.
*/
/*
* User: anna
* Date: 05-Feb-2007
*/
package com.intellij.lang.properties.psi;
import com.intellij.codeInsight.CodeInsightBundle;
import com.intellij.codeInsight.intention.QuickFixFactory;
import com.intellij.ide.fileTemplates.JavaTemplateUtil;
import com.intellij.openapi.project.Project;
import com.intellij.psi.JavaPsiFacade;
import com.intellij.psi.PsiClass;
import com.intellij.psi.PsiFile;
import com.intellij.psi.search.GlobalSearchScope;
import org.jetbrains.annotations.Nullable;
public class DefaultResourceBundleManager extends ResourceBundleManager {
public DefaultResourceBundleManager(final Project project) {
super(project);
}
@Nullable
public PsiClass getResourceBundle() {
return JavaPsiFacade.getInstance(myProject).findClass("java.util.ResourceBundle", GlobalSearchScope.allScope(myProject));
}
public String getTemplateName() {
return JavaTemplateUtil.TEMPLATE_I18NIZED_EXPRESSION;
}
public String getConcatenationTemplateName() {
return JavaTemplateUtil.TEMPLATE_I18NIZED_CONCATENATION;
}
public boolean isActive(PsiFile context) throws ResourceBundleNotFoundException{
if (getResourceBundle() != null) {
return true;
}
throw new ResourceBundleNotFoundException(CodeInsightBundle.message("i18nize.dialog.error.jdk.message"), QuickFixFactory.getInstance().createSetupJDKFix());
}
public boolean canShowJavaCodeInfo() {
return true;
}
}