Package org.wikier.trioo.jtrioo.models

Examples of org.wikier.trioo.jtrioo.models.SimplePerson


  private static final String SERIALIZATION = "RDF/XML-ABBREV";
  private SimplePerson person;
 
  @Before
  public void before() {
    this.person = new SimplePerson();
    this.person.setName("Alice");
    SimplePerson rel = new SimplePerson();
    rel.setName("Bob");
    this.person.setRel(rel);
  }
View Full Code Here

TOP

Related Classes of org.wikier.trioo.jtrioo.models.SimplePerson

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.