mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-15 05:25:05 -05:00
ServerListAdapter: Added missing java doc
This commit is contained in:
parent
d447990a35
commit
be07e2e0ad
@ -22,6 +22,10 @@ package org.yaaic.adapter;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
import org.yaaic.R;
|
||||
import org.yaaic.Yaaic;
|
||||
import org.yaaic.model.Server;
|
||||
|
||||
import android.content.Context;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
@ -30,10 +34,6 @@ import android.widget.BaseAdapter;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
|
||||
import org.yaaic.R;
|
||||
import org.yaaic.Yaaic;
|
||||
import org.yaaic.model.Server;
|
||||
|
||||
/**
|
||||
* Adapter for server lists
|
||||
*
|
||||
@ -51,6 +51,11 @@ public class ServerListAdapter extends BaseAdapter
|
||||
loadServers();
|
||||
}
|
||||
|
||||
/**
|
||||
* Load servers from database
|
||||
*
|
||||
* Delegate call to yaaic instance
|
||||
*/
|
||||
public void loadServers()
|
||||
{
|
||||
servers = Yaaic.getInstance().getServersAsArrayList();
|
||||
|
Loading…
Reference in New Issue
Block a user