org.jqassistant.contrib.plugin.csharp.model.InvokesDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jqassistant.plugin.csharp Show documentation
Show all versions of jqassistant.plugin.csharp Show documentation
The jQAssistant plugin to scan and to analyze a CSharp instance.
The newest version!
package org.jqassistant.contrib.plugin.csharp.model;
import com.buschmais.jqassistant.core.store.api.model.Descriptor;
import com.buschmais.xo.neo4j.api.annotation.Label;
import com.buschmais.xo.neo4j.api.annotation.Relation;
import java.util.List;
import static com.buschmais.xo.neo4j.api.annotation.Relation.Outgoing;
@Label("Invocation")
public interface InvokesDescriptor extends Descriptor, LineNumberDescriptor {
@Outgoing
@Relation("INVOKES")
MethodDescriptor getInvokedMethod();
void setInvokedMethod(MethodDescriptor methodDescriptor);
@Relation("WITH_TYPE_ARGUMENT")
List getGenericTypeArguments();
}