Project documentation: use Type[] for 'typed' arrays.

This commit is contained in:
Jonathan Puckey 2011-05-26 16:49:19 +02:00
parent 8ab56a7ebd
commit b52421c282

View file

@ -98,7 +98,7 @@ var Project = this.Project = Base.extend({
/**
* The selected items contained within the project.
*
* @type array
* @type Item[]
* @bean
*/
getSelectedItems: function() {
@ -149,7 +149,7 @@ var Project = this.Project = Base.extend({
* The layers contained within the project.
*
* @name Project#layers
* @type array
* @type Layer[]
*/
/**
@ -164,14 +164,14 @@ var Project = this.Project = Base.extend({
* The symbols contained within the project.
*
* @name Project#symbols
* @type array
* @type Symbol[]
*/
/**
* The views contained within the project.
*
* @name Project#views
* @type array
* @type View[]
*/
/**