Container
[ class tree: Container ] [ index: Container ] [ all elements ]

Source for file Interface.php

Documentation is available at Interface.php

  1. <?php
  2. /**
  3.  * Mai_Container_Word_Interface
  4.  * 
  5.  * Copyright (C) 2009  Mai (Me Artificial Intelligence)
  6.  *
  7.  * This program is free software: you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation, either version 3 of the License, or
  10.  * (at your option) any later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  19.  * 
  20.  * @author Wouter Bulten (wouterbulten@mai-ai.org)
  21.  * @copyright Copyright (C) 2009  Mai (Me Artificial Intelligence)
  22.  * @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3 (GPLv3)
  23.  * @link http://www.launchpad.net/mai
  24.  * 
  25.  * @category Mai
  26.  * @package Container
  27.  * @subpackage Word
  28.  * 
  29.  */
  30.  
  31. /** Load required file */
  32. {
  33.     require_once 'Mai/Container/Interface.php';
  34. }
  35.  
  36. /**
  37.  * Mai_Container_Word_Interface is a interface for word container classes.
  38.  * 
  39.  * @author Wouter Bulten (wouterbulten@mai-ai.org)
  40.  * @copyright Copyright (C) 2009  Mai (Me Artificial Intelligence)
  41.  * @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3 (GPLv3)
  42.  * @link http://www.launchpad.net/mai
  43.  * 
  44.  * @category Mai
  45.  * @package Container
  46.  * @subpackage Word
  47.  *
  48.  */
  49. {
  50.     public function setType($type);
  51.     public function getType();
  52.     
  53.     public function setTime($time);
  54.     public function getTime();
  55.     
  56.     public function setNumber($number);
  57.     public function getNumber();
  58.     
  59.     public function setPerson($person);
  60.     public function getPerson();
  61.     
  62.     public function setWwId($wwId);
  63.     public function getWwId();
  64.  
  65.     public function getWord();
  66. }

Documentation generated on Mon, 27 Jul 2009 19:55:06 +0200 by phpDocumentor 1.4.1