Interface IConstructorLinkingCandidate

    • Method Detail

      • getConstructor

        org.eclipse.xtext.common.types.JvmConstructor getConstructor()
      • isAnonymousClassConstructorCall

        boolean isAnonymousClassConstructorCall()
      • getTypeArguments

        java.util.List<LightweightTypeReference> getTypeArguments()
        The resolved type arguments. If the constructor itself defines type parameters, their resolved representation is prepended to the list of type arguments. Consider the following type:
         class C<T, V> {
           public 

        C(P p) {} }

        An invocation of the constructor C will return three type arguments, the bound values of for P, T and V.
        Specified by:
        getTypeArguments in interface ILinkingCandidate