get('id'); } public function setId($id){ return $this->set('id',$id); } public function setModifiedTime($modifiedTime){ return $this->set('modifiedtime',$modifiedTime); } public function getModifiedTime(){ return $this->get('modifiedtime'); } public function setType($type){ $this->type = $type; return $this; } public function getType(){ return $this->type; } public function setMode($mode){ $this->mode = $mode; return $this; } public function getMode(){ return $this->mode; } public function isDeleteMode(){ return ($this->mode == self::WSAPP_DELETE_MODE) ? true :false; } public function isCreateMode(){ return ($this->mode == self::WSAPP_CREATE_MODE) ? true : false; } public function getSyncIdentificationKey(){ return $this->get('_syncidentificationkey'); } public function setSyncIdentificationKey($key){ return $this->set('_syncidentificationkey',$key); } public static function getInstanceFromValues($recordValues){ $model = new WSAPP_SyncRecordModel($recordValues); return $model; } } ?>