List<String> annTags = new ArrayList<String>();
annTags.add( "Conservative" );
annTags.add( "Pretty" );
annDoe.tags().set( annTags );
Male joeDoe = uow.newEntity( MaleEntity.class );
setName( joeDoe, "Joe Doe" );
joeDoe.placeOfBirth().set( kualaLumpur );
joeDoe.yearOfBirth().set( 1990 );
joeDoe.mother().set( annDoe );
joeDoe.pastGirlFriends().add( 0, annDoe );
joeDoe.interests().add( 0, programming );
joeDoe.interests().add( 0, gaming );
joeDoe.email().set( "joe@thedoes.net" );
List<String> joeTags = new ArrayList<String>();
joeTags.add( "Cool" );
joeTags.add( "Hunk" );
joeTags.add( "Awesome" );
joeDoe.tags().set( joeTags );
Male jackDoe = uow.newEntity( MaleEntity.class );
setName( jackDoe, "Jack Doe" );
jackDoe.placeOfBirth().set( penang );
jackDoe.yearOfBirth().set( 1970 );
jackDoe.interests().add( 0, cars );
jackDoe.wife().set( annDoe );
List<String> jackTags = new ArrayList<String>();
jackTags.add( "Conservative" );
jackTags.add( "Awesome" );
jackDoe.tags().set( jackTags );
ValueBuilder<ContactsValue> builder = vbf.newValueBuilder( ContactsValue.class );
ValueBuilder<ContactValue> contactBuilder = vbf.newValueBuilder( ContactValue.class );
contactBuilder.prototype().email().set( "jackdoe@someplace.com" );
contactBuilder.prototype().phone().set( "555-1234" );
builder.prototype().contacts().get().add( contactBuilder.newInstance() );
jackDoe.contacts().set( builder.newInstance() );
annDoe.husband().set( jackDoe );
PetEntity rex = uow.newEntity( PetEntity.class );
setName( rex, "Rex" );