com.buschmais.jqassistant.plugin.java.api.model.MemberDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java Show documentation
Show all versions of java Show documentation
Plugin for jQAssistant to be able to scan and to
analyze Java related artifacts.
The newest version!
package com.buschmais.jqassistant.plugin.java.api.model;
import com.buschmais.jqassistant.core.store.api.model.Descriptor;
import com.buschmais.jqassistant.plugin.common.api.model.NamedDescriptor;
import com.buschmais.xo.api.annotation.Abstract;
import com.buschmais.xo.neo4j.api.annotation.Label;
import static com.buschmais.xo.neo4j.api.annotation.Relation.Incoming;
/**
* Defines a member of Java type.
*/
@Label("Member")
@Abstract
public interface MemberDescriptor extends JavaByteCodeDescriptor, NamedDescriptor, SignatureDescriptor, AnnotatedDescriptor, AccessModifierDescriptor, Descriptor {
/**
* Return the declaring type.
*
* @return The declaring type.
*/
@Incoming
@Declares
TypeDescriptor getDeclaringType();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy