View Javadoc

1   package org.musicontroller.core;
2   
3   /**
4    * This interface specifies the needs of an ArchiveDirProvider. It is a small
5    * interface, with just one method: a getter for the directory of the
6    * music files.
7    * @author Varienaja
8    */
9   public interface MusicDirProvider {
10  	
11  	/**
12  	 * Getter for the music archive directory. 
13  	 * @return The music archive directory.
14  	 */
15  	public String getMusicDirectory();
16  
17  }