Fixed missing types in javadoc.

This commit is contained in:
Luc Maisonobe 2015-11-02 14:31:38 +01:00
parent ad12d97cbb
commit e10556ec68
3 changed files with 5 additions and 1 deletions

View File

@ -520,6 +520,7 @@ public class BSPTree<S extends Space> {
* specifies how to handle this situation. * specifies how to handle this situation.
* setting * setting
* </p> * </p>
* @param <S> Type of the space.
* @since 3.4 * @since 3.4
*/ */
public interface VanishingCutHandler<S extends Space> { public interface VanishingCutHandler<S extends Space> {

View File

@ -256,7 +256,9 @@ public class FieldLUDecomposition<T extends FieldElement<T>> {
return new Solver<T>(field, lu, pivot, singular); return new Solver<T>(field, lu, pivot, singular);
} }
/** Specialized solver. */ /** Specialized solver.
* @param <T> the type of the field elements
*/
private static class Solver<T extends FieldElement<T>> implements FieldDecompositionSolver<T> { private static class Solver<T extends FieldElement<T>> implements FieldDecompositionSolver<T> {
/** Field to which the elements belong. */ /** Field to which the elements belong. */

View File

@ -626,6 +626,7 @@ public class Frequency implements Serializable {
/** /**
* A Comparator that compares comparable objects using the * A Comparator that compares comparable objects using the
* natural order. Copied from Commons Collections ComparableComparator. * natural order. Copied from Commons Collections ComparableComparator.
* @param <T> the type of the objects compared
*/ */
private static class NaturalComparator<T extends Comparable<T>> implements Comparator<Comparable<T>>, Serializable { private static class NaturalComparator<T extends Comparable<T>> implements Comparator<Comparable<T>>, Serializable {