If you think the Android project magicAnnotator listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Magic Annotator - The only thing you need to write down whatever you want.
* Copyright (C) 2013 Nahuel Barrios <barrios.nahuel@gmail.com>.
*/*www.java2s.com*/
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*//**
* Created by: Nahuel Barrios.
* On: 17/10/12 at 09:00hs.
*/package com.nbempire.android.magicannotator.dao.impl;
import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;
import com.nbempire.android.magicannotator.dao.PlayerDao;
import com.nbempire.android.magicannotator.domain.Player;
import com.nbempire.android.magicannotator.storage.schema.PlayerTable;
import java.util.ArrayList;
import java.util.List;
/**
* Implementatino of PlayerDao for the Player entity.
*
* @author Nahuel Barrios.
* @since 13
*/publicclass PlayerDaoImpl implements PlayerDao {
/**
* Tag for class' log.
*/privatestaticfinal String LOG_TAG = "PlayerDaoImpl";
/**
* Application DB.
*/privatefinal SQLiteDatabase magicAnnotatorDB;
/**
* Constructor method for this DAO.
*
* @param database
* The database where the table is.
*
* @since 13
*/public PlayerDaoImpl(SQLiteDatabase database) {
this.magicAnnotatorDB = database;
}
@Override
public List<Player> findAll() {
List<Player> players = new ArrayList<Player>();
Cursor cursor = magicAnnotatorDB.query(PlayerTable.TABLE_NAME, null, null, null, null, null, null);
for (cursor.moveToFirst(); !cursor.isAfterLast(); cursor.moveToNext()) {
Player player = new Player(cursor.getString(cursor.getColumnIndex(PlayerTable.NICKNAME)));
player.setId(cursor.getInt(cursor.getColumnIndex(PlayerTable.ID)));
Log.d(LOG_TAG, "Getting " + player.getNickName() + "\twith ID: " + player.getId() + "\tfrom DB.");
players.add(player);
}
// TODO : Refactor : Should I close this Cursor object? Check startManagingCursor(cursor) method.
return players;
}
@Override
publicvoid save(Player player) {
ContentValues columnsAndValues = new ContentValues();
columnsAndValues.put(PlayerTable.NICKNAME, player.getNickName());
long createdId = magicAnnotatorDB.insert(PlayerTable.TABLE_NAME, "null", columnsAndValues);
if (createdId == -1) {
Log.e(LOG_TAG, "There was an error trying to save the Player: " + player.getNickName());
} else {
Log.i(LOG_TAG, "Created Player with ID: " + createdId);
}
}
@Override
publicvoid deleteAll() {
String tableName = PlayerTable.TABLE_NAME;
int deletedRows = magicAnnotatorDB.delete(tableName, "1", null);
Log.i(LOG_TAG, "Deleted " + deletedRows + " rows from table " + tableName + " in DB.");
}
}