Package org.bar.foo.entities

Examples of org.bar.foo.entities.Author


    newsPaper.setJournalist(new Journalist[] {newJournalist(),newJournalist()});
    return newsPaper;
  }
 
  public static Author newAuthor() {
    Author author = new Author();
    author.setAddress("myAddress");
    author.setBithdate(getDate(1935, 01, 01));
    author.setId(2);
    author.setName("Isaac Asimov");
    author.setSex(1);
    return author;
  }
View Full Code Here

TOP

Related Classes of org.bar.foo.entities.Author

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.