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


Java IProperty.getUnescapedKey方法代码示例

本文整理汇总了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());
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:14,代码来源:KeyChooserDialog.java

示例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;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:14,代码来源:IvyAttachSourceProvider.java


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