package uk.org.aspellclark.gedcom.model;
import java.util.List;
import uk.org.aspellclark.gedcom.model.structures.NoteStructure;
/**<pre>CHANGE_DATE:=
n CHAN {1:1}
+1 DATE <CHANGE_DATE> {1:1}
+2 TIME <TIME_VALUE> {0:1}
+1 <<NOTE_STRUCTURE>> {0:M}</pre>
The change date is intended to only record the last change to a record. Some systems may want to
manage the change process with more detail, but it is sufficient for GEDCOM purposes to indicate
the last time that a record was modified.
*/
public class ChangeDate {
public String date;
public String time;
public List<NoteStructure> note;
}
|