Package com.intellij.coldFusion.model.psi.impl

Source Code of com.intellij.coldFusion.model.psi.impl.CfmlTagInvokeImpl

/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.coldFusion.model.psi.impl;

import com.intellij.coldFusion.model.psi.*;
import com.intellij.lang.ASTNode;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiReference;
import com.intellij.psi.PsiType;
import org.jetbrains.annotations.NotNull;

/**
* User: vnikolaenko
* Date: 29.04.2009
*/
// corresponding text pattern: <cfinvoke ... >
public class CfmlTagInvokeImpl extends CfmlTagImpl implements CfmlFunctionCall {
  private static final String TAG_NAME = "cfinvoke";

  public CfmlTagInvokeImpl(@NotNull ASTNode node) {
    super(node);
  }

  @Override
  public PsiType getPsiType() {
    return null;
  }

  @Override
  public CfmlReference getReferenceExpression() {
    return findNotNullChildByClass(CfmlReferenceExpression.class);
  }

  @NotNull
  @Override
  public PsiElement getNavigationElement() {
    return getReferenceExpression();
  }

  @Override
  public CfmlArgumentList findArgumentList() {
    return null;
  }

  @Override
  public PsiType[] getArgumentTypes() {
    return PsiType.EMPTY_ARRAY;
  }

  @Override
  public String getName() {
    CfmlReferenceExpression name = findChildByClass(CfmlReferenceExpression.class);
    return name != null ? name.getName() : null;
  }

  @NotNull
  @Override
  public String getTagName() {
    return TAG_NAME;
  }

  @NotNull
  @Override
  public PsiReference[] getReferences() {
    final PsiElement reference = getAttributeValueElement("component");

    if (reference != null) {
      ASTNode referenceNode = reference.getNode();
      if (referenceNode != null) {
        return new PsiReference[]{new CfmlComponentReference(referenceNode, this)};
      }
    }
    return super.getReferences();
  }
}
TOP

Related Classes of com.intellij.coldFusion.model.psi.impl.CfmlTagInvokeImpl

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.