Examples of FtlPsiType


Examples of com.intellij.freemarker.psi.variables.FtlPsiType

              final PsiElement target = reference == null ? null : reference.resolve();
              if (target != null &&
                  (file.getManager().areElementsEquivalent(file, target) ||
                   file.getManager().areElementsEquivalent(file.getOriginalFile(), target))) {
                final PsiClassType actionType = PsiTypesUtil.getClassType(actionClass);
                final FtlPsiType ftlPsiType = FtlPsiType.wrap(actionType);
                result.add(new MyFtlLightVariable("", action.getXmlTag(), ftlPsiType));
                result.add(new MyFtlLightVariable("action", action.getXmlTag(), ftlPsiType));
                return false; // stop after first match
              }
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.