Examples of CfmlComponentImpl


Examples of com.intellij.coldFusion.model.psi.impl.CfmlComponentImpl

    super(debugName, CfmlLanguage.INSTANCE);
  }

  @Override
  public CfmlComponent createPsi(@NotNull CfmlComponentStub stub) {
    return new CfmlComponentImpl(stub);
  }
View Full Code Here

Examples of com.intellij.coldFusion.model.psi.impl.CfmlComponentImpl

    if (type instanceof CfmlCompositeElementType) {
      return ((CfmlCompositeElementType)type).createPsiElement(node);
    }
    else if (type == CfmlElementTypes.COMPONENT_DEFINITION) {
      return new CfmlComponentImpl(node);
    }
    else if (type == CfmlElementTypes.COMPONENT_TAG) {
      return new CfmlTagComponentImpl(node);
    }
    throw new AssertionError("Unknown type: " + type);
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.