LUCENE-6196: Fix javadoc issues; ant precommit is happy.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene6196@1677656 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
David Wayne Smiley 2015-05-04 19:14:54 +00:00
parent 55d46dc6d3
commit 9f8f7feec6
5 changed files with 39 additions and 5 deletions

View File

@ -17,6 +17,7 @@ package org.apache.lucene.spatial.spatial4j.geo3d;
* limitations under the License.
*/
/** Factory for {@link org.apache.lucene.spatial.spatial4j.geo3d.GeoArea}. */
public class GeoAreaFactory {
private GeoAreaFactory() {
}

View File

@ -17,6 +17,7 @@ package org.apache.lucene.spatial.spatial4j.geo3d;
* limitations under the License.
*/
/** Factory for {@link org.apache.lucene.spatial.spatial4j.geo3d.GeoBBox}. */
public class GeoBBoxFactory {
private GeoBBoxFactory() {
}

View File

@ -93,9 +93,6 @@ public class Plane extends Vector {
/**
* Evaluate the plane equation for a given point, as represented
* by a vector.
*
* @param x,y,z is the vector.
* @return the result of the evaluation.
*/
public double evaluate(final double x, final double y, final double z) {
return dotProduct(x, y, z) + D;
@ -115,8 +112,7 @@ public class Plane extends Vector {
/**
* Evaluate the plane equation for a given point, as represented
* by a vector.
*
* @param x,y,z is the vector.
*
* @return true if the result is on the plane.
*/
public boolean evaluateIsZero(final double x, final double y, final double z) {

View File

@ -1,3 +1,20 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Shapes implemented using 3D planar geometry.
*/

View File

@ -0,0 +1,19 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/** Spatial4j stuff that ideally belongs in Spatial4j (isn't related to Lucene). */
package org.apache.lucene.spatial.spatial4j;