javaDoc生产文档
package com.li;
/**
* @author Lilele
* @version 1.0
* @since 1.8
*/
public class Doc {
String name;
/**
* @author Lilele
* @param name
* @return
* @throws Exception
*/
public String test (String name) throws Exception{
return name;
}
}
package com.li;
/**
* @author Lilele
* @version 1.0
* @since 1.8
*/
public class Doc {
String name;
/**
* @author Lilele
* @param name
* @return
* @throws Exception
*/
public String test (String name) throws Exception{
return name;
}
}