Creating a Table
Examples of creating a table
/**
* <h1>Represents the customer table</h1>
*/
public class CustomerTable extends TableAdapter<Customer> {
@Override
public @NotNull String getName() {
return "Customer";
}
}/**
* <h1>Represents a purchase table</h1>
*/
public class PurchaseTable extends TableAdapter<Purchase> {
@Override
public @NotNull String getName() {
return "Purchase";
}
}Last updated