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


Java Template.getKey方法代码示例

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


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

示例1: loadTemplates

import com.intellij.codeInsight.template.Template; //导入方法依赖的package包/类
/**
 * load live templates from input stream
 *
 * @param inputStream  input stream
 * @param templateName template Name
 */
public void loadTemplates(@NotNull final InputStream inputStream, final String templateName) {
    final SAXBuilder parser = new SAXBuilder();
    try {
        final TemplateSettings templateSettings = TemplateSettings.getInstance();
        final Document doc = parser.build(inputStream);
        final Element root = doc.getRootElement();
        for (Object element : root.getChildren()) {
            if (element instanceof Element) {
                final Template template = readExternal((Element) element, templateName);
                final String key = template.getKey();
                // if template with the same key is already loaded, ignore it  TODO: rewrite, when API will be improved!
                if (key != null && templateSettings.getTemplate(key, null) == null) {
                    templateSettings.addTemplate(template);
                }
            }
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
}
 
开发者ID:code4craft,项目名称:ibatis-plugin,代码行数:27,代码来源:IbatisApplicationComponent.java

示例2: SmartCompletionTemplateItem

import com.intellij.codeInsight.template.Template; //导入方法依赖的package包/类
public SmartCompletionTemplateItem(Template o, PsiElement context) {
  super(o, o.getKey());
  myContext = context;
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:5,代码来源:SmartCompletionTemplateItem.java


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