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.Set;
9
10 /***
11 * interface indicating that this piece of content has defined keywords for
12 * search engine
13 *
14 * @author konstantin
15 * @created August 19, 2003
16 * @version $Revision: 1.1 $
17 */
18 public interface Keyworded {
19
20 /***
21 * Gets the Keywords attribute of the Keyworded object
22 *
23 * @return The Keywords value
24 */
25 public Set getKeywords();
26 }
This page was automatically generated by Maven