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


Java PsiFileSystemItem.getName方法代码示例

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


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

示例1: getRelativePathFromAncestor

import com.intellij.psi.PsiFileSystemItem; //导入方法依赖的package包/类
@Nullable
public static String getRelativePathFromAncestor(PsiFileSystemItem file, PsiFileSystemItem ancestor) {
  int length = 0;
  PsiFileSystemItem parent = file;

  while (true) {
    if (parent == null) return null;
    if (parent.equals(ancestor)) break;
    if (length > 0) {
      length++;
    }
    length += parent.getName().length();
    parent = parent.getParent();
  }

  char[] chars = new char[length];
  int index = chars.length;
  parent = file;

  while (true) {
    if (parent.equals(ancestor)) break;
    if (index < length) {
      chars[--index] = '/';
    }
    String name = parent.getName();
    for (int i = name.length() - 1; i >= 0; i--) {
      chars[--index] = name.charAt(i);
    }
    parent = parent.getParent();
  }
  return StringFactory.createShared(chars);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:33,代码来源:PsiFileSystemItemUtil.java

示例2: calcPropertyValue

import com.intellij.psi.PsiFileSystemItem; //导入方法依赖的package包/类
protected String calcPropertyValue(String propertyName) {
  final PsiFileSystemItem item = getFile().getValue();
  if (item != null) {
    final String name = item.getName();
    final String suffix = getSuffix().getStringValue();
    return suffix != null && name.endsWith(suffix)? name.substring(0, name.length() - suffix.length()) : name;
  }
  return super.calcPropertyValue(propertyName);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:10,代码来源:AntDomBasenameTask.java

示例3: getElementText

import com.intellij.psi.PsiFileSystemItem; //导入方法依赖的package包/类
@Override
public String getElementText(PsiFileSystemItem element) {
  return element.getName();
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:GotoFileCellRenderer.java


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