From 9e3bf16b0ddaa811446f54544c7639d090e08449 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Tue, 10 Mar 2009 22:36:37 +0000 Subject: [PATCH] Marking the api. git-svn-id: http://svn.openlayers.org/trunk/openlayers@9001 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Control/Split.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/OpenLayers/Control/Split.js b/lib/OpenLayers/Control/Split.js index 876b57d0b8..2ccd9c4ae2 100644 --- a/lib/OpenLayers/Control/Split.js +++ b/lib/OpenLayers/Control/Split.js @@ -49,7 +49,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, { EVENT_TYPES: ["beforesplit", "split", "aftersplit"], /** - * Property: layer + * APIProperty: layer * {} The target layer with features to be split. * Set at construction or after construction with . */ @@ -72,7 +72,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, { sourceOptions: null, /** - * Property: tolerance + * APIProperty: tolerance * {Number} Distance between the calculated intersection and a vertex on * the source geometry below which the existing vertex will be used * for the split. Default is null. @@ -80,7 +80,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, { tolerance: null, /** - * Property: edge + * APIProperty: edge * {Boolean} Allow splits given intersection of edges only. Default is * true. If false, a vertex on the source must be within the * distance of the calculated intersection for a split @@ -89,7 +89,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, { edge: true, /** - * Property: deferDelete + * APIProperty: deferDelete * {Boolean} Instead of removing features from the layer, set feature * states of split features to DELETE. This assumes a save strategy * or other component is in charge of removing features from the @@ -99,7 +99,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, { deferDelete: false, /** - * Property: mutual + * APIProperty: mutual * {Boolean} If source and target layers are the same, split source * features and target features where they intersect. Default is * true. If false, only target features will be split. @@ -107,7 +107,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, { mutual: true, /** - * Property: targetFilter + * APIProperty: targetFilter * {OpenLayers.Filter} Optional filter that will be evaluated * to determine if a feature from the target layer is eligible for * splitting. @@ -115,7 +115,7 @@ OpenLayers.Control.Split = OpenLayers.Class(OpenLayers.Control, { targetFilter: null, /** - * Property: sourceFilter + * APIProperty: sourceFilter * {OpenLayers.Filter} Optional filter that will be evaluated * to determine if a feature from the target layer is eligible for * splitting.