[ Index ]
 

Code source de eGroupWare 1.2.106-2

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/phpgwapi/inc/horde/Horde/SyncML/Command/Sync/ -> SyncElementItem.php (source)

   1  <?php
   2  
   3  include_once 'Horde/SyncML/Command.php';
   4  
   5  /**
   6   * $Horde: framework/SyncML/SyncML/Command/Sync/SyncElement.php,v 1.11 2004/07/02 19:24:44 chuck Exp $
   7   *
   8   * Copyright 2003-2004 Anthony Mills <amills@pyramid6.com>
   9   * Copyright 2005-2006 Lars Kneschke <l.kneschke@metaways.de>
  10   *
  11   * See the enclosed file COPYING for license information (LGPL). If you
  12   * did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
  13   *
  14   * @author  Anthony Mills <amills@pyramid6.com>
  15   * @version $Revision: 21249 $
  16   * @since   Horde 3.0
  17   * @package Horde_SyncML
  18   */
  19  class Horde_SyncML_Command_Sync_SyncElementItem {
  20  
  21      var $_luid;
  22      var $_guid;
  23      var $_content;
  24      var $_contentSize;
  25      var $_contentType;
  26      var $_moreData = false;
  27      
  28  	function getLocURI() {
  29          return $this->_luid;
  30      }
  31      
  32  	function getGUID() {
  33          return $this->_guid;
  34      }
  35      
  36  	function getContentType() {
  37          return $this->_contentType;
  38      }
  39      
  40  	function getContent() {
  41          return $this->_content;
  42      }
  43      
  44  	function setLocURI($luid) {
  45          $this->_luid = $luid;
  46      }
  47      
  48  	function setGUID($guid) {
  49          $this->_guid = $guid;
  50      }
  51      
  52  	function setContent($content) {
  53          $this->_content = $content;
  54      }
  55  
  56  	function setContentSize($_size) {
  57          $this->_contentSize = $_size;
  58      }
  59  
  60  	function setContentType($_contentType) {
  61          $this->_contentType = $_contentType;
  62      }
  63  
  64  	function setMoreData($_status) {
  65          $this->_moreData = $_status;
  66      }
  67  }


Généré le : Sun Feb 25 17:20:01 2007 par Balluche grâce à PHPXref 0.7