1 /*
2 * Copyright (c) 2003
3 * Information Desire GmbH
4 * All rights reserved.
5 */
6 package com.infodesire.infobit.dao;
7
8 import java.util.Map;
9 /***
10 * DOCUMENT INTERFACE
11 *
12 * @author konstantin
13 * @created September 3, 2003
14 * @version $Revision: 1.1 $
15 */
16 interface AttributeSettable {
17 /***
18 * Gets the Attributes attribute of the AttributeSettable object
19 *
20 * @return The Attributes value
21 */
22 Map getAttributes();
23
24
25 /***
26 * Sets the Attributes attribute of the AttributeSettable object
27 *
28 * @param attr The new Attributes value
29 */
30 void setAttributes(Map attr);
31 }
This page was automatically generated by Maven