diff --git a/src/core/PaperScope.js b/src/core/PaperScope.js index 37eade5e..029720dc 100644 --- a/src/core/PaperScope.js +++ b/src/core/PaperScope.js @@ -123,10 +123,10 @@ var PaperScope = Base.extend(/** @lends PaperScope# */{ * * @option [settings.insertItems=true] {Boolean} controls whether newly * created items are automatically inserted into the scene graph, by - * adding them to {@link Project#getActiveLayer()} + * adding them to {@link Project#activeLayer} * @option [settings.applyMatrix=true] {Boolean} controls what value newly - * created items have their {@link Item#getApplyMatrix()} property set - * to (Note that not all items can set this to `false`) + * created items have their {@link Item#applyMatrix} property set to + * (Note that not all items can set this to `false`) * @option [settings.handleSize=4] {Number} the size of the curve handles * when drawing selections * @option [settings.hitTolerance=0] {Number} the default tolerance for hit- diff --git a/src/item/Project.js b/src/item/Project.js index 0e830728..53b01108 100644 --- a/src/item/Project.js +++ b/src/item/Project.js @@ -268,7 +268,7 @@ var Project = PaperScopeItem.extend(/** @lends Project# */{ /** * @bean - * @deprecated use {@link #getSymbolDefinitions()} instead. + * @deprecated use {@link #symbolDefinitions} instead. */ getSymbols: 'getSymbolDefinitions', diff --git a/src/item/Raster.js b/src/item/Raster.js index 2a4367ea..fa26da27 100644 --- a/src/item/Raster.js +++ b/src/item/Raster.js @@ -219,7 +219,7 @@ var Raster = Item.extend(/** @lends Raster# */{ /** * @private * @bean - * @deprecated use {@link #getResolution()} instead. + * @deprecated use {@link #resolution} instead. */ getPpi: '#getResolution', diff --git a/src/item/Shape.js b/src/item/Shape.js index 32c2d619..bc26a516 100644 --- a/src/item/Shape.js +++ b/src/item/Shape.js @@ -63,7 +63,7 @@ var Shape = Item.extend(/** @lends Shape# */{ /** * @private * @bean - * @deprecated use {@link #getType()} instead. + * @deprecated use {@link #type} instead. */ getShape: '#getType', setShape: '#setType', diff --git a/src/item/SymbolDefinition.js b/src/item/SymbolDefinition.js index 2ae5556b..9e79b27d 100644 --- a/src/item/SymbolDefinition.js +++ b/src/item/SymbolDefinition.js @@ -122,7 +122,7 @@ var SymbolDefinition = Base.extend(/** @lends SymbolDefinition# */{ /** * @bean - * @deprecated use {@link #getItem()} instead. + * @deprecated use {@link #item} instead. */ getDefinition: '#getItem', setDefinition: '#setItem', diff --git a/src/item/SymbolItem.js b/src/item/SymbolItem.js index aad3506c..3e78646c 100644 --- a/src/item/SymbolItem.js +++ b/src/item/SymbolItem.js @@ -103,7 +103,7 @@ var SymbolItem = Item.extend(/** @lends SymbolItem# */{ /** * @bean - * @deprecated use {@link #getDefinition()} instead. + * @deprecated use {@link #definition} instead. */ getSymbol: '#getDefinition', setSymbol: '#setDefinition', diff --git a/src/path/CompoundPath.js b/src/path/CompoundPath.js index a369e00e..e69a7f88 100644 --- a/src/path/CompoundPath.js +++ b/src/path/CompoundPath.js @@ -181,7 +181,7 @@ var CompoundPath = PathItem.extend(/** @lends CompoundPath# */{ /** * The first Segment contained within the compound-path, a short-cut to - * calling {@link Path#getFirstSegment()} on {@link Item#getFirstChild()}. + * calling {@link Path#firstSegment} on {@link Item#firstChild}. * * @bean * @type Segment @@ -193,7 +193,7 @@ var CompoundPath = PathItem.extend(/** @lends CompoundPath# */{ /** * The last Segment contained within the compound-path, a short-cut to - * calling {@link Path#getLastSegment()} on {@link Item#getLastChild()}. + * calling {@link Path#lastChild} on {@link Item#lastChild}. * * @bean * @type Segment @@ -220,7 +220,7 @@ var CompoundPath = PathItem.extend(/** @lends CompoundPath# */{ /** * The first Curve contained within the compound-path, a short-cut to - * calling {@link Path#getFirstCurve()} on {@link Item#getFirstChild()}. + * calling {@link Path#firstCurve} on {@link Item#firstChild}. * * @bean * @type Curve @@ -232,7 +232,7 @@ var CompoundPath = PathItem.extend(/** @lends CompoundPath# */{ /** * The last Curve contained within the compound-path, a short-cut to - * calling {@link Path#getLastCurve()} on {@link Item#getLastChild()}. + * calling {@link Path#lastCurve} on {@link Item#lastChild}. * * @bean * @type Curve @@ -244,7 +244,7 @@ var CompoundPath = PathItem.extend(/** @lends CompoundPath# */{ /** * The area that the compound-path's geometry is covering, calculated by - * getting th e{@link Path#getArea()} of each sub-path and it adding up. + * getting the {@link Path#area} of each sub-path and it adding up. * Note that self-intersecting paths and sub-paths of different orientation * can result in areas that cancel each other out. * @@ -261,7 +261,7 @@ var CompoundPath = PathItem.extend(/** @lends CompoundPath# */{ /** * The total length of all sub-paths in this compound-path, calculated by - * getting the {@link Path#getLength()} of each sub-path and it adding up. + * getting the {@link Path#length} of each sub-path and it adding up. * * @bean * @type Number diff --git a/src/path/Curve.js b/src/path/Curve.js index 95d07337..bd0df8cf 100644 --- a/src/path/Curve.js +++ b/src/path/Curve.js @@ -632,8 +632,7 @@ statics: /** @lends Curve */{ * Splits the specified curve values into curves that are monotone in the * specified coordinate direction. * - * @param {Number[]} v the curve values, as returned by - * {@link Curve#getValues()} + * @param {Number[]} v the curve values, as returned by {@link Curve#values} * @param {Boolean} [dir=false] the direction in which the curves should be * monotone, `false`: in x-direction, `true`: in y-direction * @return {Number[][]} an array of curve value arrays of the resulting diff --git a/src/path/CurveLocation.js b/src/path/CurveLocation.js index 6c0e8f2a..cd878d45 100644 --- a/src/path/CurveLocation.js +++ b/src/path/CurveLocation.js @@ -185,7 +185,7 @@ var CurveLocation = Base.extend(/** @lends CurveLocation# */{ /** * @private * @bean - * @deprecated use {@link #getTime()} instead. + * @deprecated use {@link #time} instead. */ getParameter: '#getTime', diff --git a/src/path/PathItem.Boolean.js b/src/path/PathItem.Boolean.js index 29d79e04..3a7fe82d 100644 --- a/src/path/PathItem.Boolean.js +++ b/src/path/PathItem.Boolean.js @@ -453,8 +453,8 @@ PathItem.inject(new function() { * @param {Point} point the location for which to determine the winding * contribution * @param {Curve[]} curves the curves that describe the shape against which - * to check, as returned by {@link Path#getCurves()} or - * {@link CompoundPath#getCurves()} + * to check, as returned by {@link Path#curves} or + * {@link CompoundPath#curves} * @param {Boolean} [dir=false] the direction in which to determine the * winding contribution, `false`: in x-direction, `true`: in y-direction * @param {Boolean} [closed=false] determines how areas should be closed diff --git a/src/style/GradientStop.js b/src/style/GradientStop.js index 3fc84a38..96e78464 100644 --- a/src/style/GradientStop.js +++ b/src/style/GradientStop.js @@ -127,7 +127,7 @@ var GradientStop = Base.extend(/** @lends GradientStop# */{ /** * @private * @bean - * @deprecated use {@link #getOffset()} instead. + * @deprecated use {@link #offset} instead. */ getRampPoint: '#getOffset', setRampPoint: '#setOffset', diff --git a/src/style/Style.js b/src/style/Style.js index 20b3b1fa..1b2dccb2 100644 --- a/src/style/Style.js +++ b/src/style/Style.js @@ -354,7 +354,7 @@ var Style = Base.extend(new function() { /** * @bean * @private - * @deprecated use {@link #getFontFamily()} instead. + * @deprecated use {@link #fontFamily} instead. */ getFont: '#getFontFamily', setFont: '#setFontFamily', diff --git a/src/text/TextItem.js b/src/text/TextItem.js index 5a006233..b6d56bfe 100644 --- a/src/text/TextItem.js +++ b/src/text/TextItem.js @@ -158,7 +158,7 @@ var TextItem = Item.extend(/** @lends TextItem# */{ /** * @bean * @private - * @deprecated use {@link #getStyle()} instead. + * @deprecated use {@link #style} instead. */ getCharacterStyle: '#getStyle', setCharacterStyle: '#setStyle', @@ -166,7 +166,7 @@ var TextItem = Item.extend(/** @lends TextItem# */{ /** * @bean * @private - * @deprecated use {@link #getStyle()} instead. + * @deprecated use {@link #style} instead. */ getParagraphStyle: '#getStyle', setParagraphStyle: '#setStyle' diff --git a/src/view/View.js b/src/view/View.js index e37e618f..20a5c430 100644 --- a/src/view/View.js +++ b/src/view/View.js @@ -608,7 +608,7 @@ var View = Base.extend(Emitter, /** @lends View# */{ * @name View#rotate * @function * @param {Number} angle the rotation angle - * @param {Point} [center={@link View#getCenter()}] + * @param {Point} [center={@link View#center}] * @see Matrix#rotate(angle[, center]) */ @@ -619,7 +619,7 @@ var View = Base.extend(Emitter, /** @lends View# */{ * @name View#scale * @function * @param {Number} scale the scale factor - * @param {Point} [center={@link View#getCenter()}] + * @param {Point} [center={@link View#center}] */ /** * Scales the view by the given values from its center point, or optionally @@ -629,7 +629,7 @@ var View = Base.extend(Emitter, /** @lends View# */{ * @function * @param {Number} hor the horizontal scale factor * @param {Number} ver the vertical scale factor - * @param {Point} [center={@link View#getCenter()}] + * @param {Point} [center={@link View#center}] */ /** @@ -639,7 +639,7 @@ var View = Base.extend(Emitter, /** @lends View# */{ * @name View#shear * @function * @param {Point} shear the horziontal and vertical shear factors as a point - * @param {Point} [center={@link View#getCenter()}] + * @param {Point} [center={@link View#center}] * @see Matrix#shear(shear[, center]) */ /** @@ -650,7 +650,7 @@ var View = Base.extend(Emitter, /** @lends View# */{ * @function * @param {Number} hor the horizontal shear factor * @param {Number} ver the vertical shear factor - * @param {Point} [center={@link View#getCenter()}] + * @param {Point} [center={@link View#center}] * @see Matrix#shear(hor, ver[, center]) */ @@ -661,7 +661,7 @@ var View = Base.extend(Emitter, /** @lends View# */{ * @name View#skew * @function * @param {Point} skew the horziontal and vertical skew angles in degrees - * @param {Point} [center={@link View#getCenter()}] + * @param {Point} [center={@link View#center}] * @see Matrix#shear(skew[, center]) */ /** @@ -672,7 +672,7 @@ var View = Base.extend(Emitter, /** @lends View# */{ * @function * @param {Number} hor the horizontal skew angle in degrees * @param {Number} ver the vertical sskew angle in degrees - * @param {Point} [center={@link View#getCenter()}] + * @param {Point} [center={@link View#center}] * @see Matrix#shear(hor, ver[, center]) */