remove *private* statements from nd comments

git-svn-id: http://svn.openlayers.org/trunk/openlayers@3620 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
euzuro
2007-07-06 17:38:20 +00:00
parent b3e847300e
commit a74a9bd49f
7 changed files with 20 additions and 24 deletions

View File

@@ -224,7 +224,6 @@ OpenLayers.Event = {
/**
* Method: _removeElementObservers
* *Private*.
*
* Parameters:
* elementObservers - {Array(Object)} Array of (element, name,
@@ -616,8 +615,6 @@ OpenLayers.Events.prototype = {
* care to set a property 'xy' on the event with the current mouse
* position.
*
* Private function.
*
* Parameters:
* evt - {Event}
*/
@@ -628,7 +625,6 @@ OpenLayers.Events.prototype = {
/**
* Method: getMousePosition
* *Private*
*
* Parameters:
* evt - {Event}

View File

@@ -19,20 +19,20 @@ OpenLayers.Handler.MOD_ALT = 4;
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 @@ OpenLayers.Handler.prototype = {
/**
* Property: active
* *Private*. {Boolean}
* {Boolean}
*/
active: false,

View File

@@ -31,7 +31,7 @@ OpenLayers.Handler.Drag.prototype = OpenLayers.Class.inherit( OpenLayers.Handler
/**
* Property: oldOnselectstart
* *Private*. {Function}
* {Function}
*/
oldOnselectstart: null,

View File

@@ -27,7 +27,7 @@ OpenLayers.Handler.Keyboard.prototype = OpenLayers.Class.inherit( OpenLayers.Han
/**
* Property: eventListener
* *Private*. {Function}
* {Function}
*/
eventListener: null,

View File

@@ -21,7 +21,7 @@ OpenLayers.Handler.MouseWheel.prototype = OpenLayers.Class.inherit( OpenLayers.H
/**
* 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.
*/

View File

@@ -21,7 +21,7 @@ OpenLayers.Handler.Path.prototype =
/**
* Property: line
* *Private*. {<OpenLayers.Feature.Vector>}
* {<OpenLayers.Feature.Vector>}
*/
line: null,
@@ -66,7 +66,7 @@ OpenLayers.Handler.Path.prototype =
/**
* Method: createFeature
* *Private*. Add temporary geometries
* Add temporary geometries
*/
createFeature: function() {
this.line = new OpenLayers.Feature.Vector(
@@ -77,7 +77,7 @@ OpenLayers.Handler.Path.prototype =
/**
* Method: destroyFeature
* *Private*. Destroy temporary geometries
* Destroy temporary geometries
*/
destroyFeature: function() {
this.line.destroy();
@@ -86,7 +86,7 @@ OpenLayers.Handler.Path.prototype =
/**
* 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 @@ OpenLayers.Handler.Path.prototype =
/**
* 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 @@ OpenLayers.Handler.Path.prototype =
/**
* 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 @@ OpenLayers.Handler.Path.prototype =
/**
* 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 @@ OpenLayers.Handler.Path.prototype =
/**
* 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 @@ OpenLayers.Handler.Path.prototype =
/**
* 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 @@ OpenLayers.Handler.Path.prototype =
/**
* 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 @@ OpenLayers.Handler.Path.prototype =
/**
* 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 @@ OpenLayers.Handler.Path.prototype =
/**
* 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:

View File

@@ -21,7 +21,7 @@ OpenLayers.Handler.Polygon.prototype =
/**
* Parameter: polygon
* *Private*. {<OpenLayers.Feature.Vector>}
* {<OpenLayers.Feature.Vector>}
*/
polygon: null,