Clean up whitespace in Item documentation.

This commit is contained in:
Jonathan Puckey 2011-05-23 17:10:12 +02:00
parent dc66049312
commit 08f6f94fb6

View file

@ -86,6 +86,7 @@ var Item = this.Item = Base.extend({
/** /**
* The unique id of the item. * The unique id of the item.
*
* @type number * @type number
* @bean * @bean
*/ */
@ -97,6 +98,7 @@ var Item = this.Item = Base.extend({
/** /**
* The name of the item. * The name of the item.
*
* @type string * @type string
* @bean * @bean
*/ */
@ -226,6 +228,7 @@ var Item = this.Item = Base.extend({
/** /**
* The project that this item belongs to. * The project that this item belongs to.
*
* @type Project * @type Project
* @bean * @bean
*/ */
@ -307,6 +310,7 @@ var Item = this.Item = Base.extend({
/** /**
* The item that this item is contained within. * The item that this item is contained within.
*
* @type Item * @type Item
* @bean * @bean
*/ */
@ -318,6 +322,7 @@ var Item = this.Item = Base.extend({
/** /**
* The index of this item within the list of its parent's children. * The index of this item within the list of its parent's children.
*
* @type number * @type number
* @bean * @bean
*/ */
@ -327,6 +332,7 @@ var Item = this.Item = Base.extend({
/** /**
* The children items contained within this item. * The children items contained within this item.
*
* @type array * @type array
* @bean * @bean
*/ */
@ -351,6 +357,7 @@ var Item = this.Item = Base.extend({
/** /**
* Reverses the order of this item's children * Reverses the order of this item's children
*
* @return {boolean} true if the children were removed, false otherwise. * @return {boolean} true if the children were removed, false otherwise.
*/ */
reverseChildren: function() { reverseChildren: function() {
@ -376,6 +383,7 @@ var Item = this.Item = Base.extend({
/** /**
* The first item contained within this item. * The first item contained within this item.
*
* @type Item * @type Item
* @bean * @bean
*/ */
@ -385,6 +393,7 @@ var Item = this.Item = Base.extend({
/** /**
* The last item contained within this item. * The last item contained within this item.
*
* @type Item * @type Item
* @bean * @bean
*/ */
@ -395,6 +404,7 @@ var Item = this.Item = Base.extend({
/** /**
* The next item on the same level as this item. * The next item on the same level as this item.
*
* @type Item * @type Item
* @bean * @bean
*/ */
@ -404,6 +414,7 @@ var Item = this.Item = Base.extend({
/** /**
* The previous item on the same level as this item. * The previous item on the same level as this item.
*
* @type Item * @type Item
* @bean * @bean
*/ */
@ -542,6 +553,7 @@ var Item = this.Item = Base.extend({
/** /**
* The bounding rectangle of the item including stroke width. * The bounding rectangle of the item including stroke width.
*
* @type Rectangle * @type Rectangle
* @bean * @bean
*/ */
@ -632,6 +644,7 @@ var Item = this.Item = Base.extend({
/** /**
* The item's position within the project. This is the * The item's position within the project. This is the
* {@link Rectangle#center} of the {@link Item#bounds} rectangle. * {@link Rectangle#center} of the {@link Item#bounds} rectangle.
*
* @type Point * @type Point
* @bean * @bean
*/ */
@ -767,6 +780,7 @@ var Item = this.Item = Base.extend({
/** /**
* The path style of the item. * The path style of the item.
*
* @type PathStyle * @type PathStyle
* @bean * @bean
*/ */
@ -954,24 +968,28 @@ var Item = this.Item = Base.extend({
/** /**
* Removes the item when the next {@link Tool#onMouseMove} event is fired. * Removes the item when the next {@link Tool#onMouseMove} event is fired.
*
* @name Item#removeOnMove * @name Item#removeOnMove
* @function * @function
*/ */
/** /**
* Removes the item when the next {@link Tool#onMouseDown} event is fired. * Removes the item when the next {@link Tool#onMouseDown} event is fired.
*
* @name Item#removeOnDown * @name Item#removeOnDown
* @function * @function
*/ */
/** /**
* Removes the item when the next {@link Tool#onMouseDrag} event is fired. * Removes the item when the next {@link Tool#onMouseDrag} event is fired.
*
* @name Item#removeOnDrag * @name Item#removeOnDrag
* @function * @function
*/ */
/** /**
* Removes the item when the next {@link Tool#onMouseUp} event is fired. * Removes the item when the next {@link Tool#onMouseUp} event is fired.
*
* @name Item#removeOnUp * @name Item#removeOnUp
* @function * @function
*/ */