Package com.intellij.codeInsight.template.impl

Examples of com.intellij.codeInsight.template.impl.TextExpression


    TemplateBuilderImpl builder = new TemplateBuilderImpl(bnfFile);
    PsiElement tokenId = ObjectUtils.assertNotNull(entry.getId());
    PsiElement tokenValue = ObjectUtils.assertNotNull(entry.getLiteralExpression());
    if (tokenName == null) {
      builder.replaceElement(tokenId, "TokenName", new TextExpression(tokenId.getText()), true);
    }
    builder.replaceElement(tokenValue, "TokenText", new TextExpression(tokenValue.getText()), true);

    for (BnfExpression occurrence : occurrences) {
      builder.replaceElement(occurrence, "Other", new Expression() {

        @Nullable
View Full Code Here

TOP

Related Classes of com.intellij.codeInsight.template.impl.TextExpression

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.