blob: 05c247cd4d5f795e590cc2b185da7ec40ca39601 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/**
* Copyright (c) 2015 Camil Staps <info@camilstaps.nl>
* See the LICENSE file for copying permission.
*/
package com.camilstaps.shop;
/**
* A Category for Articles
* @author Camil Staps, s4498062
*/
public class Category extends DatabaseItem {
private final String name;
/**
* Create a new Category
* @param name
*/
public Category(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
|