本文整理汇总了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);
}
示例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);
}
示例3: getElementText
import com.intellij.psi.PsiFileSystemItem; //导入方法依赖的package包/类
@Override
public String getElementText(PsiFileSystemItem element) {
return element.getName();
}