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

com.redhat.ceylon.cmr.api.ArtifactCreator Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.redhat.ceylon.cmr.api;

import java.io.File;
import java.io.IOException;
import java.util.Collection;
import java.util.Set;

/**
 * Contract for a component that can create a compilation artifact.
 * 
 * @author Enrique Zamudio
 */
public interface ArtifactCreator {

    /** Copy the specified source files, avoiding duplicate entries. */
    public Set copy(Collection sources) throws IOException;

    /** Return the root directories that can contain (re)source files. */
    public Iterable getPaths();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy