Huhu Leute
Gegeben habe ich folgenden JavaDoc Kommentar:
/**
* Returns the next element in the list and moves the cursor to the next fragment.
* Aborts if there is no next fragment.
*
* @return This Element's successor Element.
*/
Mein Code ist:
public Fragment next() {
if(this.hasNext()){
currentElement = currentElement.next;
return currentElement.fragment;
}else{
return null;
}
}
Meine Frage:
Im JavaDoc Kommentar steht, dass die Methode abbrechen soll, wenn es (in diesem Fall) kein weiteres Fragment gibt. Ich habe aber ein "return null", was natürlich keinem Abbruch der Methode entspricht.
Wie schreibe ich eine Abbruchbedingung in meiner Methode?
Danke schonmal für Eure Antwort
MfG
Sammykop
Gegeben habe ich folgenden JavaDoc Kommentar:
/**
* Returns the next element in the list and moves the cursor to the next fragment.
* Aborts if there is no next fragment.
*
* @return This Element's successor Element.
*/
Mein Code ist:
public Fragment next() {
if(this.hasNext()){
currentElement = currentElement.next;
return currentElement.fragment;
}else{
return null;
}
}
Meine Frage:
Im JavaDoc Kommentar steht, dass die Methode abbrechen soll, wenn es (in diesem Fall) kein weiteres Fragment gibt. Ich habe aber ein "return null", was natürlich keinem Abbruch der Methode entspricht.
Wie schreibe ich eine Abbruchbedingung in meiner Methode?
Danke schonmal für Eure Antwort
MfG
Sammykop