remove broken javadocs links

This commit is contained in:
Milos Kozak 2021-02-19 13:09:30 +01:00
parent 548ffb36a0
commit 866173e1ce
2 changed files with 5 additions and 7 deletions

View file

@ -125,7 +125,7 @@ public class ProfileSwitch implements Interval, DataPointWithLabelInterface {
/** /**
* Note: the name returned here is used as the PS name when uploading to NS. When such a PS is retrieved * Note: the name returned here is used as the PS name when uploading to NS. When such a PS is retrieved
* again from NS, the added parts must be removed again, see * again from NS, the added parts must be removed again, see
* {@link info.nightscout.androidaps.utils.PercentageSplitter#pureName} * {PercentageSplitter#pureName}
*/ */
public String getCustomizedName() { public String getCustomizedName() {
String name = profileName; String name = profileName;

View file

@ -2,7 +2,6 @@ package info.nightscout.androidaps.utils.textValidator;
import android.content.Context; import android.content.Context;
import android.text.TextWatcher; import android.text.TextWatcher;
import android.widget.EditText;
import info.nightscout.androidaps.utils.textValidator.validators.Validator; import info.nightscout.androidaps.utils.textValidator.validators.Validator;
@ -14,19 +13,18 @@ public interface EditTextValidator {
* Add a validator to this FormEditText. The validator will be added in the * Add a validator to this FormEditText. The validator will be added in the
* queue of the current validators. * queue of the current validators.
* *
* @param theValidator
* @throws IllegalArgumentException if the validator is null * @throws IllegalArgumentException if the validator is null
*/ */
void addValidator(Validator theValidator) void addValidator(Validator theValidator)
throws IllegalArgumentException; throws IllegalArgumentException;
/** /**
* This should be used with {@link #addTextChangedListener(TextWatcher)}. It * This should be used with { #addTextChangedListener(TextWatcher)}. It
* fixes the non-hiding error popup behaviour. * fixes the non-hiding error popup behaviour.
*/ */
TextWatcher getTextWatcher(); TextWatcher getTextWatcher();
boolean isEmptyAllowed(); @SuppressWarnings("unused") boolean isEmptyAllowed();
/** /**
* Resets the {@link Validator}s * Resets the {@link Validator}s
@ -35,7 +33,7 @@ public interface EditTextValidator {
/** /**
* Calling *testValidity()* will cause the EditText to go through * Calling *testValidity()* will cause the EditText to go through
* customValidators and call {@link #Validator.isValid(EditText)} * customValidators and call {#Validator.isValid(EditText)}
* Same as {@link #testValidity(boolean)} with first parameter true * Same as {@link #testValidity(boolean)} with first parameter true
* *
* @return true if the validity passes false otherwise. * @return true if the validity passes false otherwise.
@ -44,7 +42,7 @@ public interface EditTextValidator {
/** /**
* Calling *testValidity()* will cause the EditText to go through * Calling *testValidity()* will cause the EditText to go through
* customValidators and call {@link #Validator.isValid(EditText)} * customValidators and call {#Validator.isValid(EditText)}
* *
* @param showUIError determines if this call should show the UI error. * @param showUIError determines if this call should show the UI error.
* @return true if the validity passes false otherwise. * @return true if the validity passes false otherwise.