blob: d2a790bc9a28c650aa28288068b5e5e935d8f626 (
plain)
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
|
/**
*
*/
package uk.org.ury.library.item;
import java.util.Map;
import uk.org.ury.database.DatabaseItem;
/**
* An item in the URY library.
*
* @author Matt Windsor
*/
public class LibraryItem extends DatabaseItem<LibraryItemProperty,
String>
{
public
LibraryItem (Map<LibraryItemProperty, String> properties)
{
super (properties);
}
}
|