Package com.jitcaforwin.extended.internal.track

Examples of com.jitcaforwin.extended.internal.track.GenreImpl


   * @param name
   *            Name of the genre.
   * @return The genre.
   */
  private Genre addGenre(String name) {
    Genre newGenre = new GenreImpl(name, this.source);
    this.genres.put(name, newGenre);
    return newGenre;
  }
View Full Code Here

TOP

Related Classes of com.jitcaforwin.extended.internal.track.GenreImpl

Copyright © 2018 www.massapicom. 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.