ILIAS  release_7 Revision v7.30-3-g800a261c036
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 {
75 }
76
77
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}
An exception for terminatinating execution or to throw for unit testing.
Class ilDclTableViewBaseDefaultValue.