Open Journal Systems  3.3.0
InterestEntry.inc.php
1 <?php
2 
18 import('lib.pkp.classes.controlledVocab.ControlledVocabEntry');
19 
21  //
22  // Get/set methods
23  //
24 
29  function getInterest() {
30  return $this->getData('interest');
31  }
32 
37  function setInterest($interest) {
38  $this->setData('interest', $interest);
39  }
40 }
41 
42 
InterestEntry\setInterest
setInterest($interest)
Definition: InterestEntry.inc.php:37
DataObject\getData
& getData($key, $locale=null)
Definition: DataObject.inc.php:100
InterestEntry
Definition: InterestEntry.inc.php:20
ControlledVocabEntry
Basic class describing a controlled vocab.
Definition: ControlledVocabEntry.inc.php:18
InterestEntry\getInterest
getInterest()
Definition: InterestEntry.inc.php:29
DataObject\setData
setData($key, $value, $locale=null)
Definition: DataObject.inc.php:132