javadoc fixes

This commit is contained in:
zzz
2013-06-30 17:13:53 +00:00
parent 570f8526b0
commit de4b0198b7
4 changed files with 15 additions and 15 deletions

View File

@ -388,7 +388,7 @@ public class DoCMDS implements Runnable {
* Does the base64 information look OK
*
* @param data
* @return
* @return OK
*/
private boolean is64ok(String data) {
try {

View File

@ -763,7 +763,7 @@ public class PluginStarter implements Runnable {
/**
* Returns <code>true</code> if one or more client threads are running in a given plugin.
* @param pluginName
* @return
* @return true if running
*/
private static boolean isClientThreadRunning(String pluginName) {
ThreadGroup group = pluginThreadGroups.get(pluginName);

View File

@ -365,7 +365,7 @@ public class WebMail extends HttpServlet
*
* @param name
* @param label
* @return
* @return the string
*/
private static String sortHeader( String name, String label, String imgPath )
{
@ -376,7 +376,7 @@ public class WebMail extends HttpServlet
*
* @param request
* @param key
* @return
* @return true if pressed
*/
private static boolean buttonPressed( RequestWrapper request, String key )
{
@ -530,7 +530,7 @@ public class WebMail extends HttpServlet
* - quote html tags
*
* @param line
* @return
* @return escaped string
*/
private static String quoteHTML( String line )
{
@ -870,7 +870,7 @@ public class WebMail extends HttpServlet
}
/**
* @param request
* @return
* @return message number or -1
*/
private static int getCheckedMessage(RequestWrapper request) {
for( Enumeration e = request.getParameterNames(); e.hasMoreElements(); ) {
@ -1039,7 +1039,7 @@ public class WebMail extends HttpServlet
}
/**
* @param hashCode
* @return
* @return the part or null
*/
private static MailPart getMailPartFromHashCode( MailPart part, int hashCode )
{
@ -1171,7 +1171,7 @@ public class WebMail extends HttpServlet
}
/**
* @param httpSession
* @return
* @return non-null
*/
private synchronized SessionObject getSessionObject( HttpSession httpSession )
{
@ -1324,7 +1324,7 @@ public class WebMail extends HttpServlet
/**
* @param sessionObject
* @param response
* @return
* @return success
*/
private static boolean sendAttachment(SessionObject sessionObject, HttpServletResponse response)
{
@ -1383,7 +1383,7 @@ public class WebMail extends HttpServlet
/**
* @param sessionObject
* @param request
* @return
* @return success
*/
private static boolean sendMail( SessionObject sessionObject, RequestWrapper request )
{

View File

@ -440,7 +440,7 @@ public class POP3MailBox {
/**
*
* @param cmd
* @return
* @return buffer
*/
private ReadBuffer sendCmdN(String cmd )
{
@ -448,7 +448,7 @@ public class POP3MailBox {
}
/**
* @param cmd
* @return
* @return buffer
*/
private ReadBuffer sendCmdN(String cmd, int bufSize )
{
@ -491,7 +491,7 @@ public class POP3MailBox {
*
* @param src
* @param newSize
* @return
* @return new array
*/
private byte[] resizeArray( byte src[], int newSize )
{
@ -516,8 +516,8 @@ public class POP3MailBox {
}
/**
* @param id
* @return @throws
* IOException
* @return buffer
* @throws IOException
*/
private ReadBuffer sendCmdNa(String cmd, int bufSize ) throws IOException
{