[OpenLayers-Commits] r3620 - in trunk/openlayers/lib/OpenLayers: . Handler
commits at openlayers.org
commits at openlayers.org
Fri Jul 6 13:38:21 EDT 2007
Author: euzuro
Date: 2007-07-06 13:38:20 -0400 (Fri, 06 Jul 2007)
New Revision: 3620
Modified:
trunk/openlayers/lib/OpenLayers/Events.js
trunk/openlayers/lib/OpenLayers/Handler.js
trunk/openlayers/lib/OpenLayers/Handler/Drag.js
trunk/openlayers/lib/OpenLayers/Handler/Keyboard.js
trunk/openlayers/lib/OpenLayers/Handler/MouseWheel.js
trunk/openlayers/lib/OpenLayers/Handler/Path.js
trunk/openlayers/lib/OpenLayers/Handler/Polygon.js
Log:
remove *private* statements from nd comments
Modified: trunk/openlayers/lib/OpenLayers/Events.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Events.js 2007-07-06 17:10:22 UTC (rev 3619)
+++ trunk/openlayers/lib/OpenLayers/Events.js 2007-07-06 17:38:20 UTC (rev 3620)
@@ -224,7 +224,6 @@
/**
* Method: _removeElementObservers
- * *Private*.
*
* Parameters:
* elementObservers - {Array(Object)} Array of (element, name,
@@ -616,8 +615,6 @@
* care to set a property 'xy' on the event with the current mouse
* position.
*
- * Private function.
- *
* Parameters:
* evt - {Event}
*/
@@ -628,7 +625,6 @@
/**
* Method: getMousePosition
- * *Private*
*
* Parameters:
* evt - {Event}
Modified: trunk/openlayers/lib/OpenLayers/Handler/Drag.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Handler/Drag.js 2007-07-06 17:10:22 UTC (rev 3619)
+++ trunk/openlayers/lib/OpenLayers/Handler/Drag.js 2007-07-06 17:38:20 UTC (rev 3620)
@@ -31,7 +31,7 @@
/**
* Property: oldOnselectstart
- * *Private*. {Function}
+ * {Function}
*/
oldOnselectstart: null,
Modified: trunk/openlayers/lib/OpenLayers/Handler/Keyboard.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Handler/Keyboard.js 2007-07-06 17:10:22 UTC (rev 3619)
+++ trunk/openlayers/lib/OpenLayers/Handler/Keyboard.js 2007-07-06 17:38:20 UTC (rev 3620)
@@ -27,7 +27,7 @@
/**
* Property: eventListener
- * *Private*. {Function}
+ * {Function}
*/
eventListener: null,
Modified: trunk/openlayers/lib/OpenLayers/Handler/MouseWheel.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Handler/MouseWheel.js 2007-07-06 17:10:22 UTC (rev 3619)
+++ trunk/openlayers/lib/OpenLayers/Handler/MouseWheel.js 2007-07-06 17:38:20 UTC (rev 3620)
@@ -21,7 +21,7 @@
/**
* Property: mousePosition
- * *Private*. {<OpenLayers.Pixel>} mousePosition is necessary because
+ * {<OpenLayers.Pixel>} mousePosition is necessary because
* evt.clientX/Y is buggy in Moz on wheel events, so we cache and use the
* value from the last mousemove.
*/
Modified: trunk/openlayers/lib/OpenLayers/Handler/Path.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Handler/Path.js 2007-07-06 17:10:22 UTC (rev 3619)
+++ trunk/openlayers/lib/OpenLayers/Handler/Path.js 2007-07-06 17:38:20 UTC (rev 3620)
@@ -21,7 +21,7 @@
/**
* Property: line
- * *Private*. {<OpenLayers.Feature.Vector>}
+ * {<OpenLayers.Feature.Vector>}
*/
line: null,
@@ -66,7 +66,7 @@
/**
* Method: createFeature
- * *Private*. Add temporary geometries
+ * Add temporary geometries
*/
createFeature: function() {
this.line = new OpenLayers.Feature.Vector(
@@ -77,7 +77,7 @@
/**
* Method: destroyFeature
- * *Private*. Destroy temporary geometries
+ * Destroy temporary geometries
*/
destroyFeature: function() {
this.line.destroy();
@@ -86,7 +86,7 @@
/**
* Method: addPoint
- * *Private*. Add point to geometry. Send the point index to override
+ * Add point to geometry. Send the point index to override
* the behavior of LinearRing that disregards adding duplicate points.
*/
addPoint: function() {
@@ -97,7 +97,7 @@
/**
* Method: freehandMode
- * *Private*. Determine whether to behave in freehand mode or not.
+ * Determine whether to behave in freehand mode or not.
*
* Return: {Boolean}
*/
@@ -108,7 +108,7 @@
/**
* Method: modifyFeature
- * *Private*. Modify the existing geometry given the new point
+ * Modify the existing geometry given the new point
*/
modifyFeature: function() {
var index = this.line.geometry.components.length - 1;
@@ -118,7 +118,7 @@
/**
* Method: drawFeature
- * *Private*. Render geometries on the temporary layer.
+ * Render geometries on the temporary layer.
*/
drawFeature: function() {
this.layer.drawFeature(this.line, this.style);
@@ -127,7 +127,7 @@
/**
* Method: geometryClone
- * *Private*. Return a clone of the relevant geometry.
+ * Return a clone of the relevant geometry.
*
* Return: {<OpenLayers.Geometry.LineString>}
*/
@@ -137,7 +137,7 @@
/**
* Method: mousedown
- * *Private*. Handle mouse down. Add a new point to the geometry and
+ * Handle mouse down. Add a new point to the geometry and
* render it. Return determines whether to propagate the event on the map.
*
* Parameters:
@@ -169,7 +169,7 @@
/**
* Method: mousemove
- * *Private*. Handle mouse move. Adjust the geometry and redraw.
+ * Handle mouse move. Adjust the geometry and redraw.
* Return determines whether to propagate the event on the map.
*
* Parameters:
@@ -195,7 +195,7 @@
/**
* Method: mouseup
- * *Private*. Handle mouse up. Send the latest point in the geometry to
+ * Handle mouse up. Send the latest point in the geometry to
* the control. Return determines whether to propagate the event on the map.
*
* Parameters:
@@ -222,7 +222,7 @@
/**
* Method: dblclick
- * *Private*. Handle double-clicks. Finish the geometry and send it back
+ * Handle double-clicks. Finish the geometry and send it back
* to the control.
*
* Parameters:
Modified: trunk/openlayers/lib/OpenLayers/Handler/Polygon.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Handler/Polygon.js 2007-07-06 17:10:22 UTC (rev 3619)
+++ trunk/openlayers/lib/OpenLayers/Handler/Polygon.js 2007-07-06 17:38:20 UTC (rev 3620)
@@ -21,7 +21,7 @@
/**
* Parameter: polygon
- * *Private*. {<OpenLayers.Feature.Vector>}
+ * {<OpenLayers.Feature.Vector>}
*/
polygon: null,
Modified: trunk/openlayers/lib/OpenLayers/Handler.js
===================================================================
--- trunk/openlayers/lib/OpenLayers/Handler.js 2007-07-06 17:10:22 UTC (rev 3619)
+++ trunk/openlayers/lib/OpenLayers/Handler.js 2007-07-06 17:38:20 UTC (rev 3620)
@@ -19,20 +19,20 @@
OpenLayers.Handler.prototype = {
/**
* Property: id
- * *Private*. {String}
+ * {String}
*/
id: null,
/**
* Property: control
- * *Private*. {<OpenLayers.Control>}. The control that initialized this
+ * {<OpenLayers.Control>}. The control that initialized this
* handler.
*/
control: null,
/**
* Property: map
- * *Private*. {<OpenLayers.Map>}
+ * {<OpenLayers.Map>}
*/
map: null,
@@ -44,7 +44,7 @@
/**
* Property: active
- * *Private*. {Boolean}
+ * {Boolean}
*/
active: false,
More information about the Commits
mailing list