1 /*
2 * Copyright (c) 2003
3 * Information Desire GmbH
4 * All rights reserved.
5 */
6 package com.infodesire.infobit.data;
7
8 import java.util.Map;
9
10 /***
11 * interface indicating that this entity has some attributes. Attributes are
12 * loosely defined string tags with string values.
13 *
14 * @author konstantin
15 * @created August 19, 2003
16 * @version $Revision: 1.2 $
17 */
18 public interface Attributed {
19
20 /***
21 * provide defined attributes. this map can not be modified directly.
22 *
23 * @return attribute map
24 */
25 public Map getAttributeMap();
26 }
This page was automatically generated by Maven