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

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

Added Dojo 1.9.3 release.

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