ChangeDate.java :  » Log » aracagenedb » uk » org » aspellclark » gedcom » model » Android Open Source

Android Open Source » Log » aracagenedb 
aracagenedb » uk » org » aspellclark » gedcom » model » ChangeDate.java
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 &lt;CHANGE_DATE>    {1:1}
            +2 TIME &lt;TIME_VALUE> {0:1}
        +1 &lt;&lt;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;
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.