Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions library/PhpGedcom/Record/Fam/Even.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,84 @@ public function addNote(\PhpGedcom\Record\NoteRef $note)
{
$this->_note[] = $note;
}

/**
* @return string
*/
public function getDate()
{
return $this->_date;
}

/**
* @return \PhpGedcom\Record\Indi\Even\Plac
*/
public function getPlac()
{
return $this->_plac;
}

/**
* @return array
*/
public function getSour()
{
return $this->_sour;
}

/**
* @return array
*/
public function getNote()
{
return $this->_note;
}

/**
* @return array
*/
public function getObje()
{
return $this->obje;
}

/**
* @return \PhpGedcom\Record\Addr
*/
public function getAddr()
{
return $this->_addr;
}

/**
* @return string
*/
public function getAge()
{
return $this->_age;
}

/**
* @return string
*/
public function getAgnc()
{
return $this->_agnc;
}

/**
* @return string
*/
public function getCaus()
{
return $this->_caus;
}

/**
* @return string
*/
public function getType()
{
return $this->_type;
}
}