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

View File

@@ -19,20 +19,20 @@ OpenLayers.Handler.MOD_ALT = 4;
OpenLayers.Handler.prototype = { OpenLayers.Handler.prototype = {
/** /**
* Property: id * Property: id
* *Private*. {String} * {String}
*/ */
id: null, id: null,
/** /**
* Property: control * Property: control
* *Private*. {<OpenLayers.Control>}. The control that initialized this * {<OpenLayers.Control>}. The control that initialized this
* handler. * handler.
*/ */
control: null, control: null,
/** /**
* Property: map * Property: map
* *Private*. {<OpenLayers.Map>} * {<OpenLayers.Map>}
*/ */
map: null, map: null,
@@ -44,7 +44,7 @@ OpenLayers.Handler.prototype = {
/** /**
* Property: active * Property: active
* *Private*. {Boolean} * {Boolean}
*/ */
active: false, active: false,

View File

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

View File

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

View File

@@ -21,7 +21,7 @@ OpenLayers.Handler.MouseWheel.prototype = OpenLayers.Class.inherit( OpenLayers.H
/** /**
* Property: mousePosition * 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 * evt.clientX/Y is buggy in Moz on wheel events, so we cache and use the
* value from the last mousemove. * value from the last mousemove.
*/ */

View File

@@ -21,7 +21,7 @@ OpenLayers.Handler.Path.prototype =
/** /**
* Property: line * Property: line
* *Private*. {<OpenLayers.Feature.Vector>} * {<OpenLayers.Feature.Vector>}
*/ */
line: null, line: null,
@@ -66,7 +66,7 @@ OpenLayers.Handler.Path.prototype =
/** /**
* Method: createFeature * Method: createFeature
* *Private*. Add temporary geometries * Add temporary geometries
*/ */
createFeature: function() { createFeature: function() {
this.line = new OpenLayers.Feature.Vector( this.line = new OpenLayers.Feature.Vector(
@@ -77,7 +77,7 @@ OpenLayers.Handler.Path.prototype =
/** /**
* Method: destroyFeature * Method: destroyFeature
* *Private*. Destroy temporary geometries * Destroy temporary geometries
*/ */
destroyFeature: function() { destroyFeature: function() {
this.line.destroy(); this.line.destroy();
@@ -86,7 +86,7 @@ OpenLayers.Handler.Path.prototype =
/** /**
* Method: addPoint * 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. * the behavior of LinearRing that disregards adding duplicate points.
*/ */
addPoint: function() { addPoint: function() {
@@ -97,7 +97,7 @@ OpenLayers.Handler.Path.prototype =
/** /**
* Method: freehandMode * Method: freehandMode
* *Private*. Determine whether to behave in freehand mode or not. * Determine whether to behave in freehand mode or not.
* *
* Return: {Boolean} * Return: {Boolean}
*/ */
@@ -108,7 +108,7 @@ OpenLayers.Handler.Path.prototype =
/** /**
* Method: modifyFeature * Method: modifyFeature
* *Private*. Modify the existing geometry given the new point * Modify the existing geometry given the new point
*/ */
modifyFeature: function() { modifyFeature: function() {
var index = this.line.geometry.components.length - 1; var index = this.line.geometry.components.length - 1;
@@ -118,7 +118,7 @@ OpenLayers.Handler.Path.prototype =
/** /**
* Method: drawFeature * Method: drawFeature
* *Private*. Render geometries on the temporary layer. * Render geometries on the temporary layer.
*/ */
drawFeature: function() { drawFeature: function() {
this.layer.drawFeature(this.line, this.style); this.layer.drawFeature(this.line, this.style);
@@ -127,7 +127,7 @@ OpenLayers.Handler.Path.prototype =
/** /**
* Method: geometryClone * Method: geometryClone
* *Private*. Return a clone of the relevant geometry. * Return a clone of the relevant geometry.
* *
* Return: {<OpenLayers.Geometry.LineString>} * Return: {<OpenLayers.Geometry.LineString>}
*/ */
@@ -137,7 +137,7 @@ OpenLayers.Handler.Path.prototype =
/** /**
* Method: mousedown * 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. * render it. Return determines whether to propagate the event on the map.
* *
* Parameters: * Parameters:
@@ -169,7 +169,7 @@ OpenLayers.Handler.Path.prototype =
/** /**
* Method: mousemove * 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. * Return determines whether to propagate the event on the map.
* *
* Parameters: * Parameters:
@@ -195,7 +195,7 @@ OpenLayers.Handler.Path.prototype =
/** /**
* Method: mouseup * 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. * the control. Return determines whether to propagate the event on the map.
* *
* Parameters: * Parameters:
@@ -222,7 +222,7 @@ OpenLayers.Handler.Path.prototype =
/** /**
* Method: dblclick * 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. * to the control.
* *
* Parameters: * Parameters:

View File

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