Examples of IId3Genre


Examples of com.jitcaforwin.id3.api.genre.IId3Genre

      int separator = line.indexOf("-");
      int genreID = Integer.parseInt(line.substring(0, separator));

      String text = line.substring(separator + 1);

      IId3Genre genre = this.genreFactory.getGenre(text);
     
      assertEquals(text, genre.getName());
      assertEquals(genreID, genre.getId3Id());

    }

  }
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.