Provided descriptions + todo for empty classes

This commit is contained in:
Marvin Scham
2023-05-23 07:27:16 +02:00
parent d1d15f79ec
commit 4649b58859
7 changed files with 40 additions and 13 deletions

View File

@@ -1,5 +1,10 @@
package de.rwu.easydrop.data.connector;
/**
* Allows connecting to a SQLite Database.
*
* @todo implement
*/
public class DatabaseConnector {
}

View File

@@ -1,5 +1,10 @@
package de.rwu.easydrop.data.dao;
/**
* Product data access object.
*
* @todo implement
*/
public class ProductDAO {
}

View File

@@ -1,5 +1,10 @@
package de.rwu.easydrop.data.model;
/**
* A Product
*
* @since 0.1.0
*/
public class Product {
}