当前位置: 首页>>代码示例>>Java>>正文


Java PsiBundle.message方法代码示例

本文整理汇总了Java中com.intellij.psi.PsiBundle.message方法的典型用法代码示例。如果您正苦于以下问题:Java PsiBundle.message方法的具体用法?Java PsiBundle.message怎么用?Java PsiBundle.message使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.intellij.psi.PsiBundle的用法示例。


在下文中一共展示了PsiBundle.message方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: checkWritable

import com.intellij.psi.PsiBundle; //导入方法依赖的package包/类
public static void checkWritable(@NotNull final PsiElement element) throws IncorrectOperationException {
  if (!element.isWritable()) {
    if (element instanceof PsiDirectory) {
      throw new IncorrectOperationException(
        PsiBundle.message("cannot.modify.a.read.only.directory", ((PsiDirectory)element).getVirtualFile().getPresentableUrl()));
    }
    else {
      PsiFile file = element.getContainingFile();
      if (file == null) {
        throw new IncorrectOperationException();
      }
      final VirtualFile virtualFile = file.getVirtualFile();
      if (virtualFile == null) {
        throw new IncorrectOperationException();
      }
      throw new IncorrectOperationException(PsiBundle.message("cannot.modify.a.read.only.file", virtualFile.getPresentableUrl()));
    }
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:20,代码来源:CheckUtil.java

示例2: checkWritable

import com.intellij.psi.PsiBundle; //导入方法依赖的package包/类
public static void checkWritable(@Nonnull final PsiElement element) throws IncorrectOperationException {
  if (!element.isWritable()) {
    if (element instanceof PsiDirectory) {
      throw new IncorrectOperationException(
        PsiBundle.message("cannot.modify.a.read.only.directory", ((PsiDirectory)element).getVirtualFile().getPresentableUrl()));
    }
    else {
      PsiFile file = element.getContainingFile();
      if (file == null) {
        throw new IncorrectOperationException();
      }
      final VirtualFile virtualFile = file.getVirtualFile();
      if (virtualFile == null) {
        throw new IncorrectOperationException();
      }
      throw new IncorrectOperationException(PsiBundle.message("cannot.modify.a.read.only.file", virtualFile.getPresentableUrl()));
    }
  }
}
 
开发者ID:consulo,项目名称:consulo,代码行数:20,代码来源:CheckUtil.java

示例3: getErrorDescription

import com.intellij.psi.PsiBundle; //导入方法依赖的package包/类
@NotNull
public static String getErrorDescription(@NotNull PsiReference reference)
{
	String message;
	if(reference instanceof EmptyResolveMessageProvider)
	{
		message = ((EmptyResolveMessageProvider) reference).getUnresolvedMessagePattern();
	}
	else
	{
		//noinspection UnresolvedPropertyKey
		message = PsiBundle.message("cannot.resolve.symbol");
	}

	String description;
	try
	{
		description = BundleBase.format(message, reference.getCanonicalText()); // avoid double formatting
	}
	catch(IllegalArgumentException ex)
	{
		// unresolvedMessage provided by third-party reference contains wrong format string (e.g. {}), tolerate it
		description = message;
	}
	return description;
}
 
开发者ID:consulo,项目名称:consulo-xml,代码行数:27,代码来源:XmlHighlightVisitor.java

示例4: getJavaSymbolContainerText

import com.intellij.psi.PsiBundle; //导入方法依赖的package包/类
@Nullable
private static String getJavaSymbolContainerText(final PsiElement element) {
  final String result;
  PsiElement container = PsiTreeUtil.getParentOfType(element, PsiMember.class, PsiFile.class);

  if (container instanceof PsiClass) {
    String qName = ((PsiClass)container).getQualifiedName();
    if (qName != null) {
      result = qName;
    }
    else {
      result = ((PsiClass)container).getName();
    }
  }
  else if (container instanceof PsiJavaFile) {
    result = ((PsiJavaFile)container).getPackageName();
  }
  else {//TODO: local classes
    result = null;
  }
  if (result != null) {
    return PsiBundle.message("aux.context.display", result);
  }
  return null;
}
 
开发者ID:consulo,项目名称:consulo-java,代码行数:26,代码来源:JavaPresentationUtil.java

示例5: getDisplayName

import com.intellij.psi.PsiBundle; //导入方法依赖的package包/类
@NotNull
@Override
public String getDisplayName() {
  if (myDisplayName == null) {
    return PsiBundle.message("psi.search.scope.intersection", myScope1.getDisplayName(), myScope2.getDisplayName());
  }
  return myDisplayName;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:9,代码来源:GlobalSearchScope.java

示例6: getDisplayName

import com.intellij.psi.PsiBundle; //导入方法依赖的package包/类
@Override
public String getDisplayName() {
  if (myDisplayName == null) {
    return PsiBundle.message("psi.search.scope.intersection", myScope1.getDisplayName(), myScope2.getDisplayName());
  }
  return myDisplayName;
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:8,代码来源:GlobalSearchScope.java

示例7: getDisplayName

import com.intellij.psi.PsiBundle; //导入方法依赖的package包/类
@Nonnull
@Override
public String getDisplayName() {
  if (myDisplayName == null) {
    return PsiBundle.message("psi.search.scope.intersection", myScope1.getDisplayName(), myScope2.getDisplayName());
  }
  return myDisplayName;
}
 
开发者ID:consulo,项目名称:consulo,代码行数:9,代码来源:GlobalSearchScope.java

示例8: getDisplayName

import com.intellij.psi.PsiBundle; //导入方法依赖的package包/类
@NotNull
@Override
public String getDisplayName() {
  return PsiBundle.message("psi.search.scope.production.files");
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:6,代码来源:GlobalSearchScopesCore.java

示例9: getDisplayName

import com.intellij.psi.PsiBundle; //导入方法依赖的package包/类
@NotNull
public String getDisplayName() {
  return PsiBundle.message("search.scope.unknown");
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:SearchScope.java

示例10: getDisplayName

import com.intellij.psi.PsiBundle; //导入方法依赖的package包/类
@NotNull
@Override
public String getDisplayName() {
  return hasOption(COMPILE) ? PsiBundle.message("search.scope.module", myModule.getName())
                            : PsiBundle.message("search.scope.module.runtime", myModule.getName());
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:7,代码来源:ModuleWithDependenciesScope.java

示例11: getDisplayName

import com.intellij.psi.PsiBundle; //导入方法依赖的package包/类
@NotNull
@Override
public String getDisplayName() {
  return PsiBundle.message("psi.search.scope.project");
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:6,代码来源:ProjectScopeImpl.java

示例12: getExpectedText

import com.intellij.psi.PsiBundle; //导入方法依赖的package包/类
public String getExpectedText(final PrattBuilder builder) {
  return PsiBundle.message("0.expected", toString());
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:4,代码来源:PrattTokenType.java

示例13: getDisplayName

import com.intellij.psi.PsiBundle; //导入方法依赖的package包/类
@Override
public String getDisplayName() {
  return PsiBundle.message("psi.search.scope.production.files");
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:5,代码来源:GlobalSearchScopesCore.java

示例14: getDisplayName

import com.intellij.psi.PsiBundle; //导入方法依赖的package包/类
public String getDisplayName() {
  return PsiBundle.message("search.scope.unknown");
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:4,代码来源:SearchScope.java

示例15: getDisplayName

import com.intellij.psi.PsiBundle; //导入方法依赖的package包/类
@Override
public String getDisplayName() {
  return hasOption(COMPILE) ? PsiBundle.message("search.scope.module", myModule.getName())
                            : PsiBundle.message("search.scope.module.runtime", myModule.getName());
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:6,代码来源:ModuleWithDependenciesScope.java


注:本文中的com.intellij.psi.PsiBundle.message方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。