From 2cc0b983bcc324b90f3e9b48523b1110a20e2593 Mon Sep 17 00:00:00 2001 From: Sebastian Kaspari Date: Sat, 30 May 2009 13:41:08 +0200 Subject: [PATCH] added inline documentation --- src/org/yaaic/client/ServerList.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/org/yaaic/client/ServerList.java b/src/org/yaaic/client/ServerList.java index f2ee75a..b8a716d 100644 --- a/src/org/yaaic/client/ServerList.java +++ b/src/org/yaaic/client/ServerList.java @@ -58,14 +58,31 @@ import org.yaaic.client.irc.IrcService; */ public class ServerList extends ListActivity implements OnItemLongClickListener, ServiceConnection { + /** + * Debugging/Log tag + */ public static final String TAG = "Yaaic/ServerList"; private ServerDatabase db; + /** + * Mapping for servers database to servers list view + */ private static final String[] FROM = { ServerConstants.TITLE, ServerConstants.HOST }; + + /** + * Mapping for servers database to servers list view + */ private static final int[] TO = { R.id.server_title, R.id.server_host }; + /** + * Cursor for servers database + */ private Cursor cursor; + + /** + * Binder for IrcService + */ private IrcBinder binder; @Override