Fixed susimail javadoc errors.
This commit is contained in:
@ -42,7 +42,6 @@ public class Config {
|
||||
/**
|
||||
*
|
||||
* @param name
|
||||
* @return
|
||||
*/
|
||||
public static String getProperty( String name )
|
||||
{
|
||||
@ -98,7 +97,6 @@ public class Config {
|
||||
*
|
||||
* @param name
|
||||
* @param defaultValue
|
||||
* @return
|
||||
*/
|
||||
public static String getProperty( String name, String defaultValue )
|
||||
{
|
||||
@ -109,7 +107,6 @@ public class Config {
|
||||
*
|
||||
* @param name
|
||||
* @param defaultValue
|
||||
* @return
|
||||
*/
|
||||
public static int getProperty( String name, int defaultValue )
|
||||
{
|
||||
|
@ -270,7 +270,7 @@ public class Folder {
|
||||
/**
|
||||
* Returns the element on the current page on the given position.
|
||||
*
|
||||
* @param Position of the element on the current page.
|
||||
* @param x Position of the element on the current page.
|
||||
* @return Element on the current page on the given position.
|
||||
*/
|
||||
public Object getElementAtPosXonCurrentPage( int x )
|
||||
@ -331,7 +331,7 @@ public class Folder {
|
||||
* Gets index of an element in the array regardless of sorting direction.
|
||||
*
|
||||
* @param element
|
||||
* @return
|
||||
* @return index
|
||||
*/
|
||||
private int getIndexOf( Object element )
|
||||
{
|
||||
@ -348,7 +348,7 @@ public class Folder {
|
||||
* Sorting direction is taken into account.
|
||||
*
|
||||
* @param element
|
||||
* @return
|
||||
* @return The next element
|
||||
*/
|
||||
public Object getNextElement( Object element )
|
||||
{
|
||||
@ -369,7 +369,7 @@ public class Folder {
|
||||
* Sorting direction is taken into account.
|
||||
*
|
||||
* @param element
|
||||
* @return
|
||||
* @return The previous element
|
||||
*/
|
||||
public Object getPreviousElement( Object element )
|
||||
{
|
||||
@ -388,7 +388,7 @@ public class Folder {
|
||||
* Retrieves element at index i. Depends on sorting direction.
|
||||
*
|
||||
* @param i
|
||||
* @return
|
||||
* @return Element at index i
|
||||
*/
|
||||
private Object getElement( int i )
|
||||
{
|
||||
@ -404,8 +404,6 @@ public class Folder {
|
||||
|
||||
/**
|
||||
* Returns true, if folder shows points to the last page.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public boolean isLastPage()
|
||||
{
|
||||
@ -414,8 +412,6 @@ public class Folder {
|
||||
|
||||
/**
|
||||
* Returns true, if folder shows points to the first page.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public boolean isFirstPage()
|
||||
{
|
||||
@ -427,7 +423,6 @@ public class Folder {
|
||||
* The sorting direction influences which element is taken for comparison.
|
||||
*
|
||||
* @param element
|
||||
* @return
|
||||
*/
|
||||
public boolean isLastElement( Object element )
|
||||
{
|
||||
@ -441,7 +436,6 @@ public class Folder {
|
||||
* The sorting direction influences which element is taken for comparison.
|
||||
*
|
||||
* @param element
|
||||
* @return
|
||||
*/
|
||||
public boolean isFirstElement( Object element )
|
||||
{
|
||||
|
@ -56,16 +56,12 @@ public class Attachment {
|
||||
public void setBuffer(ReadBuffer buffer) {
|
||||
this.buffer = buffer;
|
||||
}
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
|
||||
public String getTransferEncoding() {
|
||||
// TODO Auto-generated method stub
|
||||
return transferEncoding;
|
||||
}
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
|
||||
public String getContentType() {
|
||||
// TODO Auto-generated method stub
|
||||
return contentType;
|
||||
@ -82,9 +78,7 @@ public class Attachment {
|
||||
public void setTransferEncoding(String transferEncoding) {
|
||||
this.transferEncoding = transferEncoding;
|
||||
}
|
||||
/**
|
||||
* @param string
|
||||
*/
|
||||
|
||||
public void setData(String data ) {
|
||||
this.data = data;
|
||||
}
|
||||
|
@ -78,8 +78,8 @@ public class Mail {
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @param address
|
||||
* @return
|
||||
* @param address E-mail address to be validated
|
||||
* @return Is the e-mail address valid?
|
||||
*/
|
||||
public static boolean validateAddress( String address )
|
||||
{
|
||||
@ -105,7 +105,6 @@ public class Mail {
|
||||
}
|
||||
/**
|
||||
* @param address
|
||||
* @return
|
||||
*/
|
||||
public static String getAddress(String address )
|
||||
{
|
||||
|
@ -47,9 +47,9 @@ public class MailCache {
|
||||
/**
|
||||
* Fetch any needed data from pop3 server.
|
||||
*
|
||||
* @param id message id to get
|
||||
* @param uidl message id to get
|
||||
* @param headerOnly fetch only header lines?
|
||||
* @return
|
||||
* @return An e-mail
|
||||
*/
|
||||
public Mail getMail( String uidl, boolean headerOnly ) {
|
||||
|
||||
|
@ -67,29 +67,25 @@ public class RequestWrapper {
|
||||
|
||||
/**
|
||||
* @param b
|
||||
* @return
|
||||
*/
|
||||
public HttpSession getSession(boolean b) {
|
||||
return httpRequest.getSession( b );
|
||||
}
|
||||
|
||||
/**
|
||||
* @param key
|
||||
* @return
|
||||
* @param name Specific parameter key
|
||||
* @return parameter value
|
||||
*/
|
||||
public String getParameter(String name ) {
|
||||
return getParameter( name, null );
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public HttpSession getSession() {
|
||||
return httpRequest.getSession();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
* @return List of request parameter names
|
||||
*/
|
||||
public Enumeration getParameterNames() {
|
||||
if( multiPartRequest != null ) {
|
||||
@ -106,24 +102,19 @@ public class RequestWrapper {
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
* @return The total length of the content.
|
||||
*/
|
||||
public int getContentLength() {
|
||||
return httpRequest.getContentLength();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
* @return The content type of the request.
|
||||
*/
|
||||
public String getContentType() {
|
||||
return httpRequest.getContentType();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param partName
|
||||
* @return
|
||||
*/
|
||||
public String getContentType( String partName )
|
||||
{
|
||||
String result = null;
|
||||
@ -143,19 +134,11 @@ public class RequestWrapper {
|
||||
}
|
||||
return result;
|
||||
}
|
||||
/**
|
||||
* @param string
|
||||
* @return
|
||||
*/
|
||||
|
||||
public Object getAttribute(String string) {
|
||||
return httpRequest.getAttribute( string );
|
||||
}
|
||||
|
||||
/**
|
||||
* @param new_subject
|
||||
* @param string
|
||||
* @return
|
||||
*/
|
||||
public String getParameter( String name, String defaultValue )
|
||||
{
|
||||
String result = defaultValue;
|
||||
@ -184,10 +167,7 @@ public class RequestWrapper {
|
||||
}
|
||||
return result;
|
||||
}
|
||||
/**
|
||||
* @param new_filename
|
||||
* @return
|
||||
*/
|
||||
|
||||
public String getFilename(String partName )
|
||||
{
|
||||
String result = null;
|
||||
@ -198,10 +178,7 @@ public class RequestWrapper {
|
||||
}
|
||||
return result;
|
||||
}
|
||||
/**
|
||||
* @param new_filename
|
||||
* @return
|
||||
*/
|
||||
|
||||
public InputStream getInputStream(String partName )
|
||||
{
|
||||
InputStream result = null;
|
||||
|
Reference in New Issue
Block a user