Separating jsdoc style docs into their own block. The new NaturalDocs doesn't parse these mixed blocks, giving us no class descriptions with the two together. (closes #1229)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@5553 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2007-12-21 08:28:09 +00:00
parent 2447848e7f
commit 33e313b059
108 changed files with 381 additions and 160 deletions
+3 -1
View File
@@ -4,7 +4,9 @@
/**
* @requires OpenLayers/Geometry.js
*
*/
/**
* Class: OpenLayers.Geometry.Collection
* A Collection is exactly what it sounds like: A collection of different
* Geometries. These are stored in the local parameter <components> (which
+3 -1
View File
@@ -4,7 +4,9 @@
/**
* @requires OpenLayers/Geometry/MultiPoint.js
*
*/
/**
* Class: OpenLayers.Geometry.Curve
* A Curve is a MultiPoint, whose points are assumed to be connected. To
* this end, we provide a "getLength()" function, which iterates through
+3 -1
View File
@@ -4,7 +4,9 @@
/**
* @requires OpenLayers/Geometry/Curve.js
*
*/
/**
* Class: OpenLayers.Geometry.LineString
* A LineString is a Curve which, once two points have been added to it, can
* never be less than two points long.
+3 -1
View File
@@ -4,7 +4,9 @@
/**
* @requires OpenLayers/Geometry/LineString.js
*
*/
/**
* Class: OpenLayers.Geometry.LinearRing
*
* A Linear Ring is a special LineString which is closed. It closes itself
+3 -1
View File
@@ -4,7 +4,9 @@
/**
* @requires OpenLayers/Geometry/Collection.js
*
*/
/**
* Class: OpenLayers.Geometry.MultiLineString
* A MultiLineString is a geometry with multiple <OpenLayers.Geometry.LineString>
* components.
+3 -1
View File
@@ -4,7 +4,9 @@
/**
* @requires OpenLayers/Geometry/Collection.js
*
*/
/**
* Class: OpenLayers.Geometry.MultiPoint
* MultiPoint is a collection of Points. Create a new instance with the
* <OpenLayers.Geometry.MultiPoint> constructor.
+3 -1
View File
@@ -4,7 +4,9 @@
/**
* @requires OpenLayers/Geometry/Collection.js
*
*/
/**
* Class: OpenLayers.Geometry.MultiPolygon
* MultiPolygon is a geometry with multiple <OpenLayers.Geometry.Polygon>
* components. Create a new instance with the <OpenLayers.Geometry.MultiPolygon>
+3 -1
View File
@@ -4,7 +4,9 @@
/**
* @requires OpenLayers/Geometry.js
*
*/
/**
* Class: OpenLayers.Geometry.Point
* Point geometry class.
*
+3 -1
View File
@@ -4,7 +4,9 @@
/**
* @requires OpenLayers/Geometry/Collection.js
*
*/
/**
* Class: OpenLayers.Geometry.Polygon
* Polygon is a collection of Geometry.LinearRings.
*
+3 -1
View File
@@ -4,7 +4,9 @@
/**
* @requires OpenLayers/Geometry.js
*
*/
/**
* Class: OpenLayers.Geometry.Rectangle
* A Rectangle is a simple geometry. It is specified by a point (x and y)
* and dimensions (width and height), all of which are directly accessible
+3 -1
View File
@@ -4,7 +4,9 @@
/**
* @requires OpenLayers/Geometry.js
*
*/
/**
* Class: OpenLayers.Geometry.Surface
*/
OpenLayers.Geometry.Surface = OpenLayers.Class(OpenLayers.Geometry, {