Package com.impetus.kundera.rest.common

Examples of com.impetus.kundera.rest.common.Book


   */
  @Test
  public void testToStringCollectionOfQClassOfQString() {
    List books = new ArrayList();

    Book book1 = new Book();
    book1.setIsbn("11111111111");
    book1.setAuthor("Amresh");
    book1.setPublication("AAA");

    Book book2 = new Book();
    book2.setIsbn("22222222222");
    book2.setAuthor("Vivek");
    book2.setPublication("BBB");

    books.add(book1);
    books.add(book2);

    String s = CollectionConverter.toString(books, Book.class,
View Full Code Here

TOP

Related Classes of com.impetus.kundera.rest.common.Book

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.