可是里面的帮助文档我不知道该怎么写了
用什么格式啊 怎么来实现啊
谢谢了
[CODE]/*
* testHelp.java
*
* Created on 2006年12月28日, 下午4:18
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
/**
*
* @author lbf
*/
public class testHelp {
private String name;
/** Creates a new instance of testHelp */
public testHelp() {
}
/**
* 此方法用于打印传入的字符串
*/
public void printString(String s){
System.out.println("String:"+s);
}
/**
* 此方法用于返回字符串name
* @return name
*/
public String getName(){
return name;
}
/**
* 用于设置名字name
*/
public void setName(String name){
this.name=name;
}
}[/CODE]
这是一个很简单的程序,你注释的时候,按上面的格式注释
然后javadoc testHelp.java就可以了
他会自动为你生成API的文档
[CODE]/*
* testHelp.java
*
* Created on 2006年12月28日, 下午4:18
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
/**
*
* @author lbf
*/
public class testHelp {
private String name;
/** Creates a new instance of testHelp */
public testHelp() {
}
/**
* 此方法用于打印传入的字符串
*/
public void printString(String s){
System.out.println("String:"+s);
}
/**
* 此方法用于返回字符串name
* @return name
*/
public String getName(){
return name;
}
/**
* 用于设置名字name
*/
public void setName(String name){
this.name=name;
}
}[/CODE]
这是一个很简单的程序,你注释的时候,按上面的格式注释
然后javadoc testHelp.java就可以了-->老千这个怎么执行啊 ,什么意思啊,我不太明白 没用过!!
他会自动为你生成API的文档