1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-27 11:42:16 -05:00

Code/comment cleanup

This commit is contained in:
cketti 2011-01-11 03:40:43 +00:00
parent d403e36f06
commit 3aba9e11ae

View File

@ -34,9 +34,6 @@ public class ImapResponseParser
/** /**
* Reads the next response available on the stream and returns an * Reads the next response available on the stream and returns an
* ImapResponse object that represents it. * ImapResponse object that represents it.
*
* @return
* @throws IOException
*/ */
public ImapResponse readResponse(IImapResponseCallback callback) throws IOException public ImapResponse readResponse(IImapResponseCallback callback) throws IOException
{ {
@ -105,14 +102,12 @@ public class ImapResponseParser
/** /**
* Reads the next token of the response. The token can be one of: String - * Reads the next token of the response. The token can be one of: String -
* for NIL, QUOTED, NUMBER, ATOM. InputStream - for LITERAL. * for NIL, QUOTED, NUMBER, ATOM. Object - for LITERAL.
* InputStream.available() returns the total length of the stream. * ImapList - for PARENTHESIZED LIST. Can contain any of the above
* ImapResponseList - for PARENTHESIZED LIST. Can contain any of the above
* elements including List. * elements including List.
* *
* @return The next token in the response or null if there are no more * @return The next token in the response or null if there are no more
* tokens. * tokens.
* @throws IOException
*/ */
private Object readToken(ImapResponse response) throws IOException private Object readToken(ImapResponse response) throws IOException
{ {
@ -298,11 +293,8 @@ public class ImapResponseParser
} }
/** /**
* A { has been read, read the rest of the size string, the space and then * A "{" has been read. Read the rest of the size string, the space and then
* notify the listener with an InputStream. * notify the callback with an InputStream.
*
* @param mListener
* @throws IOException
*/ */
private Object parseLiteral() throws IOException private Object parseLiteral() throws IOException
{ {
@ -369,13 +361,6 @@ public class ImapResponseParser
return new String(data, "US-ASCII"); return new String(data, "US-ASCII");
} }
/**
* A " has been read, read to the end of the quoted string and notify the
* listener.
*
* @param mListener
* @throws IOException
*/
private String parseQuoted() throws IOException private String parseQuoted() throws IOException
{ {
expect('"'); expect('"');
@ -433,7 +418,7 @@ public class ImapResponseParser
} }
/** /**
* Represents an IMAP LIST response and is also the base class for the * Represents an IMAP list response and is also the base class for the
* ImapResponse. * ImapResponse.
*/ */
public class ImapList extends ArrayList<Object> public class ImapList extends ArrayList<Object>
@ -581,9 +566,7 @@ public class ImapResponseParser
} }
} }
} }
} }
} }
/** /**
@ -637,6 +620,7 @@ public class ImapResponseParser
return "#" + (mCommandContinuationRequested ? "+" : mTag) + "# " + super.toString(); return "#" + (mCommandContinuationRequested ? "+" : mTag) + "# " + super.toString();
} }
} }
public static boolean equalsIgnoreCase(Object o1, Object o2) public static boolean equalsIgnoreCase(Object o1, Object o2)
{ {
if (o1 != null && o2 != null && o1 instanceof String && o2 instanceof String) if (o1 != null && o2 != null && o1 instanceof String && o2 instanceof String)