All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.buschmais.jqassistant.plugin.java.api.model.ServiceLoaderDescriptor Maven / Gradle / Ivy

Go to download

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 java.util.List;

import com.buschmais.jqassistant.plugin.common.api.model.FileDescriptor;
import com.buschmais.xo.neo4j.api.annotation.Label;
import com.buschmais.xo.neo4j.api.annotation.Relation;

/**
 *
 */
@Label("ServiceLoader")
public interface ServiceLoaderDescriptor extends JavaDescriptor, FileDescriptor, TypedDescriptor {

    @Relation("CONTAINS")
    List getContains();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy