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 * Does the base64 information look OK
* *
* @param data * @param data
* @return * @return OK
*/ */
private boolean is64ok(String data) { private boolean is64ok(String data) {
try { 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. * Returns <code>true</code> if one or more client threads are running in a given plugin.
* @param pluginName * @param pluginName
* @return * @return true if running
*/ */
private static boolean isClientThreadRunning(String pluginName) { private static boolean isClientThreadRunning(String pluginName) {
ThreadGroup group = pluginThreadGroups.get(pluginName); ThreadGroup group = pluginThreadGroups.get(pluginName);

View File

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

View File

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