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 import java.util.HashMap;
10
11 /***
12 * script is kind of content combining template infobit and several named
13 * infobit links
14 *
15 * @author konstantin
16 * @created August 18, 2003
17 * @version $Revision: 1.3 $
18 */
19 public interface Script extends Content {
20
21 /***
22 * template of this script
23 *
24 * @return The Template value
25 */
26 public Infobit getTemplate();
27
28
29 /***
30 * map of infobit links keyed by generic names. do not ever try to modify
31 * this map - you will get really bad exception....
32 *
33 * @return infobit link map
34 */
35 public Map getLinks();
36
37 }
This page was automatically generated by Maven