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

io.neow3j.compiler.sourcelookup.ISourceContainer Maven / Gradle / Ivy

The newest version!
package io.neow3j.compiler.sourcelookup;

import java.io.File;

public interface ISourceContainer {

    /**
     * Searches this container for the source file with the given name. Returns the first match.
     *
     * @param name the name of the file.
     * @return a source file matching the given name or null if no match was found.
     */
    File findSourceFile(String name);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy