mirror of
https://github.com/moparisthebest/Yaaic
synced 2025-01-12 14:18:08 -05:00
added inline documentation
This commit is contained in:
parent
d90d31730c
commit
2cc0b983bc
@ -58,14 +58,31 @@ import org.yaaic.client.irc.IrcService;
|
|||||||
*/
|
*/
|
||||||
public class ServerList extends ListActivity implements OnItemLongClickListener, ServiceConnection
|
public class ServerList extends ListActivity implements OnItemLongClickListener, ServiceConnection
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Debugging/Log tag
|
||||||
|
*/
|
||||||
public static final String TAG = "Yaaic/ServerList";
|
public static final String TAG = "Yaaic/ServerList";
|
||||||
|
|
||||||
private ServerDatabase db;
|
private ServerDatabase db;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mapping for servers database to servers list view
|
||||||
|
*/
|
||||||
private static final String[] FROM = { ServerConstants.TITLE, ServerConstants.HOST };
|
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 };
|
private static final int[] TO = { R.id.server_title, R.id.server_host };
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Cursor for servers database
|
||||||
|
*/
|
||||||
private Cursor cursor;
|
private Cursor cursor;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Binder for IrcService
|
||||||
|
*/
|
||||||
private IrcBinder binder;
|
private IrcBinder binder;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user