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

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

Added Dojo 1.9.3 release.

File size: 322 bytes
Line 
1<?php
2
3require_once('DojoParameters.php');
4require_once('DojoBlock.php');
5
6class DojoArray extends DojoParameters
7{
8        private $object = 'DojoArray';
9        protected $terminator = ']';
10
11        public function getItems(){
12                return $this->getParameters();
13        }
14       
15        public function getItem($pos){
16                return $this->getParameter($pos);
17        }
18}
19
20?>
Note: See TracBrowser for help on using the repository browser.