Examples of AlbumCallDispatcher


Examples of com.itstherules.mediacentre.controller.dispatcher.AlbumCallDispatcher

      File directory = model.getDirectory();
      String parent = new File(directory.getParent()).getName();
      List<File> files = new ItemsModel("music/"+parameters.get("directory"),"", Extension.mp3.toString()).asList();
      List<Mp3> mp3s = new FileMp3Converter().convert(files);
      String artist = value(mp3s, parent, new ArtistCallDispatcher());
      String album = value(mp3s, directory.getName(), new AlbumCallDispatcher());
      String comment = value(mp3s, "MediaCentre", new CommentCallDispatcher());
      String genre = value(mp3s, Genre.Undefined.toString(), new GenreCallDispatcher());
      String year = value(mp3s, String.valueOf(GregorianCalendar.getInstance().get(Calendar.YEAR)), new YearCallDispatcher());
     
      parameters.put("album", album);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.