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

com.sun.btrace.spi.ClasspathProvider Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.sun.btrace.spi;

import com.sun.btrace.api.BTraceTask;
import java.util.Collection;
import java.util.Collections;

/**
 *
 * @author Jaroslav Bachorik 
 */
public interface ClasspathProvider {
    public static final ClasspathProvider EMPTY = new ClasspathProvider() {

        public Collection getClasspath(BTraceTask task) {
            return Collections.EMPTY_LIST;
        }
    };

    Collection getClasspath(BTraceTask task);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy