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

angry1980.audio.ClassPathAdapter 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;

public class ClassPathAdapter implements Adapter{

    @Override
    public File tryToGetContent(Track track) throws Exception {
        return new File(this.getClass().getResource(track.getPath()).toURI());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy