cyb3rDem0n / prismaApp

PRISMA Project Mobile Application - Prima Rete per la Sorveglianza sistematica di Meteore e Atmosfera

Home Page:http://www.prisma.inaf.it/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

StarNotifier

Welcome to the jungle

This mobile application, for now, should only notify a new event, where an EVENT is related to the observation and detection of a passing meteor. Each event is new tuple containing some information like eventDate, stationInfo and more...


Remember

Commit only working code


The Team

Giuseppe D'Agostino Giovanni PedĂ  Pasquale Labate

Teamwork - Communication - human synergy is the way 4 the force....

Further info and Contact

Having trouble with some stuff in our project? ...your life is not good enough!

ROM DB

DaoAccess, DatabAse and UserData are the classes that implements the use of Rom DataBase. You can invoche a insert / read function in this way:

 private static final String DATABASE_NAME = "userdata_db";
 private DataBase dataBase;

// WRITE
 new Thread(new Runnable() {
    @Override
    public void run() {
        UserData userData = new UserData();
        userData.setUserId(99);
        userData.setUsername("username");
        userData.setPassword("password");
        dataBase.daoAccess () . insertOnlySingleUserData (userData);
            }}) .start();

//Read
 new Thread(new Runnable() {
    @Override
    public void run() {
        UserData userData_ = dataBase.daoAccess () . fetchOneUserDatabyUserId (99);
        System.out.print("----->>> "+ userData_.getUsername());
            }}) .start();

Todos

  • Write MORE Tests
  • Add Night Mode

License

Free Software, Hell Yeah!

About

PRISMA Project Mobile Application - Prima Rete per la Sorveglianza sistematica di Meteore e Atmosfera

http://www.prisma.inaf.it/


Languages

Language:Java 100.0%