source: Dev/trunk/src/client/util/docscripts/lib/parser/DojoNull.php

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 223 bytes
Line 
1<?php
2
3class DojoNull
4{
5        private $object = 'DojoNull';
6 
7        private $value = '';
8 
9        public function __construct($value){
10                $this->value = $value;
11        }
12 
13        public function getValue(){
14                return $this->value;
15        }
16}
17
18?>
Note: See TracBrowser for help on using the repository browser.