Core  3.2
PHP API documentation
 All Data Structures Namespaces Files Functions Variables Pages
Class.WtstFmtCol.php
Go to the documentation of this file.
1 <?php
2 /*
3  * @author Anakeen
4  * @package FDL
5 */
6 
7 include_once ("FDL/Class.WDoc.php");
8 
9 class WtstFmtCol extends WDoc
10 {
11  public $attrPrefix = "WAN";
12 
13  const E1 = "E1";
14  const E2 = "E2";
15  const E3 = "E3";
16  const T1 = "T1";
17  public $firstState = self::E1;
18  public $transitions = array(
19  self::T1 => array()
20  );
21 
22  public $cycle = array(
23  array(
24  "e1" => self::E1,
25  "e2" => self::E2,
26  "t" => self::T1
27  ) ,
28  array(
29  "e1" => self::E2,
30  "e2" => self::E3,
31  "t" => self::T1
32  )
33  );
34  public $stateactivity = array(
35  self::E1 => "Activity E1",
36  self::E2 => "Activity E2"
37  );
38 }
39 ?>
← centre documentaire © anakeen