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