Package com.jcasey.jaxb.Books.Book

Examples of com.jcasey.jaxb.Books.Book.Genres


    java.setType("Java");
   
    Genre scala = new Genre();
    scala.setType("Scala");
   
    book1.setGenres(new Genres()); //Books do not need to *have* a list of Genres so create a list here
   
    // link genres with genre list   
  book1.getGenres().getGenre().add(java);
  book1.getGenres().getGenre().add(scala);
 
View Full Code Here

TOP

Related Classes of com.jcasey.jaxb.Books.Book.Genres

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.