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

angry1980.audio.LocalAdapter Maven / Gradle / Ivy

There is a newer version: 0.0.10
Show newest version
package angry1980.audio;

import angry1980.audio.model.Track;

import java.io.File;
import java.io.IOException;
import java.nio.file.Paths;

public class LocalAdapter implements Adapter{

    @Override
    public File tryToGetContent(Track track) throws IOException {
        return Paths.get(track.getPath()).toFile();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy