drunken monkey
11.12.2005, 17:59
Ich habe einige Probleme damit, mit Javadoc Dokumentationen meines Programms zu machen.
/**
* Provides useful functions, such as an Hex-Calculator.
* The program is in German.
* @author drunken monkey
* @version 1.00
*/
public class Main {
Bei der Klasse im Allgemeinen steht nur die Beschreibung, aber nirgends die Version oder der Author, obwohl ich's, wie oben zu sehen, dazugeschrieben habe.
/**
* Start of the Program-Execution. Main-Menu is displayed,
* the chosen option is read in and the respective method started.
* @param args Parameters are ignored.
* @since 1.00
*/
public static void main (String[] args) {
Das fonktioniert komplett, aber diese
/**
* Transforms a received String into a Double-Object and outputs
* a hexadecimal representation of that Double.
* @param a The String that should be representing a Double-Value and will be transformed into a hexadecimal representation.
* @since 1.00
*/
private static void toHex (String a) {
Methode wird überhaupt nicht angezeigt.
Die Dokumentation. (http://www.drunken-monkey.at.tp/Test/Main.html)
Ist zwar nicht wirklich extrem wichtig, aber ich wäre trotzdem dankbar für Lösungsvorschläge.
Edit: Vielen Dank! http://www.multimediaxis.de/images/smilies/old/sm_12.gif
/**
* Provides useful functions, such as an Hex-Calculator.
* The program is in German.
* @author drunken monkey
* @version 1.00
*/
public class Main {
Bei der Klasse im Allgemeinen steht nur die Beschreibung, aber nirgends die Version oder der Author, obwohl ich's, wie oben zu sehen, dazugeschrieben habe.
/**
* Start of the Program-Execution. Main-Menu is displayed,
* the chosen option is read in and the respective method started.
* @param args Parameters are ignored.
* @since 1.00
*/
public static void main (String[] args) {
Das fonktioniert komplett, aber diese
/**
* Transforms a received String into a Double-Object and outputs
* a hexadecimal representation of that Double.
* @param a The String that should be representing a Double-Value and will be transformed into a hexadecimal representation.
* @since 1.00
*/
private static void toHex (String a) {
Methode wird überhaupt nicht angezeigt.
Die Dokumentation. (http://www.drunken-monkey.at.tp/Test/Main.html)
Ist zwar nicht wirklich extrem wichtig, aber ich wäre trotzdem dankbar für Lösungsvorschläge.
Edit: Vielen Dank! http://www.multimediaxis.de/images/smilies/old/sm_12.gif