本文整理汇总了Java中com.intellij.lang.properties.IProperty.getUnescapedKey方法的典型用法代码示例。如果您正苦于以下问题:Java IProperty.getUnescapedKey方法的具体用法?Java IProperty.getUnescapedKey怎么用?Java IProperty.getUnescapedKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.lang.properties.IProperty
的用法示例。
在下文中一共展示了IProperty.getUnescapedKey方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: fillPropertyList
import com.intellij.lang.properties.IProperty; //导入方法依赖的package包/类
private void fillPropertyList() {
myPairs = new ArrayList<Couple<String>>();
final List<IProperty> properties = myBundle.getProperties();
for (IProperty property : properties) {
final String key = property.getUnescapedKey();
final String value = property.getValue();
if (key != null) {
myPairs.add(Couple.of(key, value != null ? value : NULL));
}
}
Collections.sort(myPairs, new MyPairComparator());
}
示例2: extractUrl
import com.intellij.lang.properties.IProperty; //导入方法依赖的package包/类
@Nullable
private static String extractUrl(PropertiesFile properties, String artifactName) {
String prefix = "artifact:" + artifactName + "#source#jar#";
for (IProperty property : properties.getProperties()) {
String key = property.getUnescapedKey();
if (key != null && key.startsWith(prefix) && key.endsWith(".location")) {
return property.getUnescapedValue();
}
}
return null;
}