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

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

Added Dojo 1.9.3 release.

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