added inline documentation

This commit is contained in:
Sebastian Kaspari 2009-05-30 13:41:08 +02:00
parent d90d31730c
commit 2cc0b983bc
1 changed files with 17 additions and 0 deletions

View File

@ -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