Package org.codehaus.enunciate.samples.genealogy.cite

Examples of org.codehaus.enunciate.samples.genealogy.cite.Note


      Event event = new Event();
      event.setDate(new DateTime(1L));
      person.setEvents(Arrays.asList(event));

      HashMap<String, Note> notes = new HashMap<String, Note>();
      Note note1 = new Note();
      note1.setText("text1");
      notes.put("contributor1", note1);
      Note note2 = new Note();
      note2.setText("text2");
      notes.put("contributor2", note2);
      person.setNotes(notes);
    }

    return persons;
View Full Code Here

TOP

Related Classes of org.codehaus.enunciate.samples.genealogy.cite.Note

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.