mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-23 09:22:19 -05:00
Removed tags
This commit is contained in:
parent
50346ef5f5
commit
9a89262714
@ -65,7 +65,6 @@ import java.util.StringTokenizer;
|
|||||||
* @version 1.4.6 (Build time: Wed Apr 11 19:20:59 2007)
|
* @version 1.4.6 (Build time: Wed Apr 11 19:20:59 2007)
|
||||||
*/
|
*/
|
||||||
public abstract class PircBot implements ReplyConstants {
|
public abstract class PircBot implements ReplyConstants {
|
||||||
public static final String TAG = "Yaaic/PircBot";
|
|
||||||
/**
|
/**
|
||||||
* The definitive version number of this release of PircBot.
|
* The definitive version number of this release of PircBot.
|
||||||
* (Note: Change this before automatically building releases)
|
* (Note: Change this before automatically building releases)
|
||||||
|
@ -39,8 +39,6 @@ import android.widget.ListView;
|
|||||||
*/
|
*/
|
||||||
public class DeckAdapter extends BaseAdapter
|
public class DeckAdapter extends BaseAdapter
|
||||||
{
|
{
|
||||||
public static final String TAG = "Yaaic/DeckAdapter";
|
|
||||||
|
|
||||||
private LinkedList<Conversation> conversations;
|
private LinkedList<Conversation> conversations;
|
||||||
private MessageListView currentView;
|
private MessageListView currentView;
|
||||||
private String currentChannel;
|
private String currentChannel;
|
||||||
|
@ -56,8 +56,6 @@ import android.content.Intent;
|
|||||||
*/
|
*/
|
||||||
public class CommandParser
|
public class CommandParser
|
||||||
{
|
{
|
||||||
public static final String TAG = "Yaaic/CommandParser";
|
|
||||||
|
|
||||||
private HashMap<String, BaseHandler> commands;
|
private HashMap<String, BaseHandler> commands;
|
||||||
private static CommandParser instance;
|
private static CommandParser instance;
|
||||||
|
|
||||||
|
@ -39,8 +39,6 @@ import android.database.sqlite.SQLiteOpenHelper;
|
|||||||
*/
|
*/
|
||||||
public class Database extends SQLiteOpenHelper
|
public class Database extends SQLiteOpenHelper
|
||||||
{
|
{
|
||||||
public static final String TAG = "Yaaic/Database";
|
|
||||||
|
|
||||||
private static final String DATABASE_NAME = "servers.db";
|
private static final String DATABASE_NAME = "servers.db";
|
||||||
private static final int DATABASE_VERSION = 1;
|
private static final int DATABASE_VERSION = 1;
|
||||||
|
|
||||||
|
@ -39,8 +39,6 @@ import android.os.Binder;
|
|||||||
*/
|
*/
|
||||||
public class IRCBinder extends Binder
|
public class IRCBinder extends Binder
|
||||||
{
|
{
|
||||||
public static final String TAG = "Yaaic/IRCBinder";
|
|
||||||
|
|
||||||
private IRCService service;
|
private IRCService service;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -47,8 +47,6 @@ import org.yaaic.model.Status;
|
|||||||
*/
|
*/
|
||||||
public class IRCConnection extends PircBot
|
public class IRCConnection extends PircBot
|
||||||
{
|
{
|
||||||
public static final String TAG = "Yaaic/IRCConnection";
|
|
||||||
|
|
||||||
private IRCService service;
|
private IRCService service;
|
||||||
private Server server;
|
private Server server;
|
||||||
|
|
||||||
|
@ -36,8 +36,6 @@ import android.content.Intent;
|
|||||||
*/
|
*/
|
||||||
public class IRCService extends Service
|
public class IRCService extends Service
|
||||||
{
|
{
|
||||||
public final static String TAG = "Yaaic/IRCService";
|
|
||||||
|
|
||||||
private IRCBinder binder;
|
private IRCBinder binder;
|
||||||
private HashMap<Integer, IRCConnection> connections;
|
private HashMap<Integer, IRCConnection> connections;
|
||||||
|
|
||||||
|
@ -33,8 +33,6 @@ import org.yaaic.adapter.MessageListAdapter;
|
|||||||
*/
|
*/
|
||||||
public abstract class Conversation
|
public abstract class Conversation
|
||||||
{
|
{
|
||||||
public static final String TAG = "Yaaic/Conversation";
|
|
||||||
|
|
||||||
public static final int TYPE_CHANNEL = 1;
|
public static final int TYPE_CHANNEL = 1;
|
||||||
public static final int TYPE_QUERY = 2;
|
public static final int TYPE_QUERY = 2;
|
||||||
public static final int TYPE_SERVER = 3;
|
public static final int TYPE_SERVER = 3;
|
||||||
|
@ -34,8 +34,6 @@ import org.yaaic.model.Broadcast;
|
|||||||
*/
|
*/
|
||||||
public class ConversationReceiver extends BroadcastReceiver
|
public class ConversationReceiver extends BroadcastReceiver
|
||||||
{
|
{
|
||||||
public static final String TAG = "Yaaic/ChannelReceiver";
|
|
||||||
|
|
||||||
private ConversationListener listener;
|
private ConversationListener listener;
|
||||||
private int serverId;
|
private int serverId;
|
||||||
|
|
||||||
|
@ -47,7 +47,6 @@ import org.yaaic.model.Status;
|
|||||||
*/
|
*/
|
||||||
public class AddServerActivity extends Activity implements OnClickListener
|
public class AddServerActivity extends Activity implements OnClickListener
|
||||||
{
|
{
|
||||||
public static final String TAG = "Yaaic/AddServerActivity";
|
|
||||||
private Server server;
|
private Server server;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -69,8 +69,6 @@ import org.yaaic.receiver.ServerReceiver;
|
|||||||
*/
|
*/
|
||||||
public class ConversationActivity extends Activity implements ServiceConnection, ServerListener, ConversationListener, OnItemClickListener, OnKeyListener, OnItemSelectedListener
|
public class ConversationActivity extends Activity implements ServiceConnection, ServerListener, ConversationListener, OnItemClickListener, OnKeyListener, OnItemSelectedListener
|
||||||
{
|
{
|
||||||
public static final String TAG = "Yaaic/ConversationActivity";
|
|
||||||
|
|
||||||
private int serverId;
|
private int serverId;
|
||||||
private Server server;
|
private Server server;
|
||||||
private IRCBinder binder;
|
private IRCBinder binder;
|
||||||
|
@ -36,8 +36,6 @@ import android.widget.ListView;
|
|||||||
*/
|
*/
|
||||||
public class MessageListView extends ListView
|
public class MessageListView extends ListView
|
||||||
{
|
{
|
||||||
public static final String TAG = "Yaaic/MessageListView";
|
|
||||||
|
|
||||||
private boolean delegate = true;
|
private boolean delegate = true;
|
||||||
private View parent;
|
private View parent;
|
||||||
private int parentWidth;
|
private int parentWidth;
|
||||||
|
@ -57,8 +57,6 @@ import org.yaaic.receiver.ServerReceiver;
|
|||||||
* @author Sebastian Kaspari <sebastian@yaaic.org>
|
* @author Sebastian Kaspari <sebastian@yaaic.org>
|
||||||
*/
|
*/
|
||||||
public class ServersActivity extends ListActivity implements ServiceConnection, ServerListener, OnItemLongClickListener {
|
public class ServersActivity extends ListActivity implements ServiceConnection, ServerListener, OnItemLongClickListener {
|
||||||
public static final String TAG = "Yaaic/ServersActivity";
|
|
||||||
|
|
||||||
private IRCBinder binder;
|
private IRCBinder binder;
|
||||||
private ServerReceiver receiver;
|
private ServerReceiver receiver;
|
||||||
private ServerListAdapter adapter;
|
private ServerListAdapter adapter;
|
||||||
|
Loading…
Reference in New Issue
Block a user