ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilDclTableViewNumberDefaultValue.php
Go to the documentation of this file.
1 <?php
2 
9 {
21  protected $id;
30  protected $tview_set_id;
38  protected $value;
39 
40 
45  public static function returnDbTableName()
46  {
47  return "il_dcl_stloc2_default";
48  }
49 
50 
54  public function getId()
55  {
56  return $this->id;
57  }
58 
59 
63  public function setId($id)
64  {
65  $this->id = $id;
66  }
67 
68 
72  public function getTviewSetId()
73  {
74  return $this->tview_set_id;
75  }
76 
77 
81  public function setTviewSetId($tview_set_id)
82  {
83  $this->tview_set_id = $tview_set_id;
84  }
85 
86 
90  public function getValue()
91  {
92  return $this->value;
93  }
94 
95 
99  public function setValue($value)
100  {
101  $this->value = $value;
102  }
103 }
Class ilDclTableViewBaseDefaultValue.