Skip to content
Snippets Groups Projects
Commit 3c85063d authored by Daniel Felipe González Obando's avatar Daniel Felipe González Obando
Browse files

fixed javadoc errors

parent 516032b8
No related branches found
No related tags found
No related merge requests found
......@@ -93,6 +93,7 @@ public abstract class RangeModel<N extends Number> implements VarEditorModel<N>
/**
* @param index
* zero-based index.
* @return the value corresponding to the specified zero-based index, i.e.,
* <code>min + index * step</code>
*/
......
......@@ -5,8 +5,8 @@ import plugins.adufour.vars.lang.Var;
/**
* Model usable by graphical user interfaces to build custom components for {@link Var} objects.
* This can be used for instance to restrict the bounds of valid values.
* <p>
* <p>
* <br>
* <br>
* For more information and model templates, see the other classes of this package.
*
* @author Alexandre Dufour
......
......@@ -10,9 +10,9 @@ import plugins.adufour.vars.util.VarListener;
/**
* Class bringing support for variables handling comparable types
*
* @param N
* The numeric type handled by this instance.
* @author Alexandre Dufour
*
* @param <N> The numeric type handled by this instance.
*/
public abstract class VarNumber<N extends Number> extends Var<N> implements Comparable<N>
{
......
......@@ -127,6 +127,7 @@ public class VarSequence extends Var<Sequence>
/**
* @deprecated Uses {@link #setActiveSequenceSelected(boolean)} instead
* @return true if the var has no sequence selected. false otherwise.
*/
@Deprecated
public boolean isNoSequenceSelected()
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment