Package org.bar.foo.entities

Examples of org.bar.foo.entities.Journalist


    author.setSex(1);
    return author;
  }
 
  public static Journalist newJournalist() {
    Journalist journalist = new Journalist();
    journalist.setCity("new york");
    journalist.setId(50);
    journalist.setNationality("�tats-unienne");
    journalist.setSelfValue("John Bob");
    return journalist;
  }
View Full Code Here

TOP

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

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.