I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 8cda5104 authored by mathiasdm's avatar mathiasdm
Browse files

- Added package doc for crypto and net.i2p

- Got rid of some susimail javadoc warnings
parent 8db45ffa
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,7 @@ public class POP3MailBox {
/**
*
* @param uidl
* @return
* @return Byte buffer containing header data.
*/
public ReadBuffer getHeader( String uidl ) {
synchronized( synchronizer ) {
......@@ -97,7 +97,7 @@ public class POP3MailBox {
* retrieves header from pop3 server (with TOP command and RETR as fallback)
*
* @param id message id
* @return byte buffer containing data
* @return Byte buffer containing header data.
*/
private ReadBuffer getHeader( int id ) {
synchronized( synchronizer ) {
......@@ -138,7 +138,7 @@ public class POP3MailBox {
/**
*
* @param uidl
* @return
* @return Byte buffer containing body data.
*/
public ReadBuffer getBody( String uidl ) {
synchronized( synchronizer ) {
......@@ -150,7 +150,7 @@ public class POP3MailBox {
* retrieve message body from pop3 server (via RETR command)
*
* @param id message id
* @return byte buffer containing data
* @return Byte buffer containing body data.
*/
private ReadBuffer getBody(int id) {
synchronized( synchronizer ) {
......@@ -179,7 +179,7 @@ public class POP3MailBox {
/**
*
* @param uidl
* @return
* @return Success of delete operation: true if successful.
*/
public boolean delete( String uidl )
{
......@@ -193,7 +193,7 @@ public class POP3MailBox {
* delete message on pop3 server
*
* @param id message id
* @return true if successful
* @return Success of delete operation: true if successful.
*/
private boolean delete(int id)
{
......@@ -215,7 +215,7 @@ public class POP3MailBox {
/**
*
* @param uidl
* @return
* @return Message size in bytes.
*/
public int getSize( String uidl ) {
synchronized( synchronizer ) {
......@@ -227,7 +227,7 @@ public class POP3MailBox {
* get size of a message (via LIST command)
*
* @param id message id
* @return message size in bytes
* @return Message size in bytes.
*/
private int getSize(int id) {
synchronized( synchronizer ) {
......@@ -627,7 +627,7 @@ public class POP3MailBox {
}
/**
* @return
* @return The amount of e-mails available.
*/
public int getNumMails() {
synchronized( synchronizer ) {
......@@ -641,7 +641,7 @@ public class POP3MailBox {
}
/**
* @return
* @return The most recent error message.
*/
public String lastError() {
Debug.debug(Debug.DEBUG, "lastError()");
......@@ -673,7 +673,7 @@ public class POP3MailBox {
* returns number of message with given UIDL
*
* @param uidl
* @return
* @return Message number.
*/
private int getIDfromUIDL( String uidl )
{
......@@ -687,7 +687,7 @@ public class POP3MailBox {
/**
*
* @param id
* @return
* @return UIDL.
*/
public String getUIDLfromID( int id )
{
......@@ -695,7 +695,7 @@ public class POP3MailBox {
}
/**
*
* @return
* @return A list of the available UIDLs.
*/
public Object[] getUIDLs()
{
......
<html>
<body>
<p>
These classes provide a number of low-level cryptographic routines.
</p>
<p>
These cryptographic routines include symmetric and asymmetric encryption and decryption, hashing, secure random number generation...
</p>
</body>
</html>
<html>
<body>
<p>
Core I2P package, contains information about the I2P version and an entry point to access important elements.
</p>
</body>
</html>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment