Uses of Class
com.example.cab302project.CrimeRecord
-
Uses of CrimeRecord in com.example.cab302project
Methods in com.example.cab302project that return CrimeRecordModifier and TypeMethodDescriptionIAppDAO.getCrimeById(int id) Retrieves a specific crime record by its unique identifier.SqliteDAO.getCrimeById(int id) Retrieves a specific crime record by its unique identifier.Methods in com.example.cab302project that return types with arguments of type CrimeRecordModifier and TypeMethodDescriptionIAppDAO.getAllCrimes()Retrieves every crime record currently stored in the system.SqliteDAO.getAllCrimes()Retrieves every crime record currently stored in the system.IAppDAO.getCrimesByUser(String username) Retrieves all crime incidents reported by a specific user.SqliteDAO.getCrimesByUser(String username) Retrieves all crime incidents reported by a specific user.Methods in com.example.cab302project with parameters of type CrimeRecordModifier and TypeMethodDescriptionbooleanIAppDAO.addCrime(CrimeRecord crime) Records a new crime incident in the data store.booleanSqliteDAO.addCrime(CrimeRecord crime) Records a new crime incident in the data store.booleanIAppDAO.updateCrime(CrimeRecord crime) Updates the details of an existing crime record.booleanSqliteDAO.updateCrime(CrimeRecord crime) Updates the details of an existing crime record.