Skip to content

Commit e7e7981

Browse files
committed
Fix a few javadoc warnings
1 parent 10d812b commit e7e7981

15 files changed

Lines changed: 4591 additions & 4596 deletions

src/com/esri/core/geometry/GeometryEngine.java

Lines changed: 791 additions & 796 deletions
Large diffs are not rendered by default.

src/com/esri/core/geometry/OperatorConvexHull.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ abstract public GeometryCursor execute(GeometryCursor geoms,
5050
*Calculates the convex hull geometry.
5151
*@param geom The input geometry.
5252
*@param progress_tracker The progress tracker, that allows to cancel the lengthy operation.
53-
*\return Returns the convex hull.
53+
*@return Returns the convex hull.
5454
*
5555
*For a Point - returns the same point.
5656
*For an Envelope - returns the same envelope.
@@ -65,8 +65,8 @@ abstract public Geometry execute(Geometry geom,
6565
/**
6666
*Checks whether a Geometry is convex.
6767
*@param geom The input geometry to test for convex.
68-
*@progress_tracker The progress tracker.
69-
*\returns Returns true if the geometry is convex.
68+
*@param progress_tracker The progress tracker.
69+
*@return Returns true if the geometry is convex.
7070
*/
7171
abstract public boolean isConvex(Geometry geom,
7272
ProgressTracker progress_tracker);

src/com/esri/core/geometry/OperatorImportFromWkb.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public abstract Geometry execute(int importFlags, Geometry.Type type,
5555
* @return Returns the imported OGCStructure.
5656
*/
5757
public abstract OGCStructure executeOGC(int importFlags,
58-
ByteBuffer wktBuffer, ProgressTracker progress_tracker);
58+
ByteBuffer wkbBuffer, ProgressTracker progress_tracker);
5959

6060
public static OperatorImportFromWkb local() {
6161
return (OperatorImportFromWkb) OperatorFactoryLocal.getInstance()

src/com/esri/core/geometry/Segment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public int getStartAttributeAsInt(int semantics, int ordinate) {
139139
*
140140
* @param semantics
141141
* The attribute semantics.
142-
* @param valueIn
142+
* @param value
143143
* is the array to write values to. The attribute type and the
144144
* number of elements must match the persistence type, as well as
145145
* the number of components of the attribute.

src/com/esri/core/geometry/VertexDescription.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,11 @@ public final int getAttributeCount() {
185185
* The index of the attribute in the description. Max value is
186186
* GetAttributeCount() - 1.
187187
*/
188-
public final int getSemantics(int attrbuteIndex) {
189-
if (attrbuteIndex < 0 || attrbuteIndex > m_attributeCount)
188+
public final int getSemantics(int attributeIndex) {
189+
if (attributeIndex < 0 || attributeIndex > m_attributeCount)
190190
throw new IllegalArgumentException();
191191

192-
return m_semantics[attrbuteIndex];
192+
return m_semantics[attributeIndex];
193193
}
194194

195195
/**

0 commit comments

Comments
 (0)