Skip to content

Commit 1b8c92a

Browse files
committed
Added ogc package to the javadoc and fixed a couple of javadoc warnings
1 parent e7e7981 commit 1b8c92a

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
</target>
8080

8181
<target name="javadoc" depends="jar">
82-
<javadoc access="public" author="true" classpathref="project.classpath" destdir="${dir.javadoc}" doctitle="Esri-geometryapi" nodeprecated="false" nodeprecatedlist="false" noindex="false" nonavbar="false" notree="false" packagenames="com.esri.core.geometry" source="1.5" sourcepath="${dir.src}" splitindex="true" use="true" version="true">
82+
<javadoc access="public" author="true" classpathref="project.classpath" destdir="${dir.javadoc}" doctitle="Esri-geometry-api" nodeprecated="false" nodeprecatedlist="false" noindex="false" nonavbar="false" notree="false" packagenames="com.esri.core.geometry.*" source="1.5" sourcepath="${dir.src}" splitindex="true" use="true" version="true">
8383
<link href="http://help.arcgis.com/EN/sdk/10.0/Java_AO_ADF/api/arcobjects" />
8484
<link href="http://docs.oracle.com/javase/6/docs/api/" />
8585
</javadoc>

src/com/esri/core/geometry/ogc/OGCConcreteGeometryCollection.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,6 @@ public boolean isSimple() {
197197
/**
198198
* isSimpleRelaxed is not supported for the GeometryCollection instance.
199199
*
200-
* @return
201200
*/
202201
@Override
203202
public boolean isSimpleRelaxed() {
@@ -207,7 +206,6 @@ public boolean isSimpleRelaxed() {
207206
/**
208207
* MakeSimpleRelaxed is not supported for the GeometryCollection instance.
209208
*
210-
* @return
211209
*/
212210
@Override
213211
public OGCGeometry MakeSimpleRelaxed(boolean forceProcessing) {

src/com/esri/core/geometry/ogc/OGCGeometry.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public boolean isSimple() {
125125
/**
126126
* Extension method - checks if geometry is simple for Geodatabase.
127127
*
128-
* @return
128+
* @return Returns true if geometry is simple, false otherwise.
129129
*/
130130
public boolean isSimpleRelaxed() {
131131
OperatorSimplify op = (OperatorSimplify) OperatorFactoryLocal
@@ -137,7 +137,7 @@ public boolean isSimpleRelaxed() {
137137
/**
138138
* Makes a simple geometry for Geodatabase.
139139
*
140-
* @return
140+
* @return Returns simplified geometry.
141141
*/
142142
public OGCGeometry MakeSimpleRelaxed(boolean forceProcessing) {
143143
OperatorSimplify op = (OperatorSimplify) OperatorFactoryLocal
@@ -393,7 +393,7 @@ public com.esri.core.geometry.SpatialReference getEsriSpatialReference() {
393393
*
394394
* @param gc
395395
* @param sr
396-
* @return
396+
* @return Geometry instance created from the geometry cursor.
397397
*/
398398
public static OGCGeometry createFromEsriCursor(GeometryCursor gc,
399399
SpatialReference sr) {

0 commit comments

Comments
 (0)