KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > server > theme > ThemeLink


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9 package org.jboss.portal.server.theme;
10
11 /**
12  * A theme link represents a link tag that will be injected into the layout as part of a theme.
13  *
14  * @author <a HREF="mailto:mholzner@novell.com>Martin Holzner</a>
15  * @version $LastChangedRevision$, $LastChangedDate$
16  */

17 public interface ThemeLink
18 {
19    /**
20     * Get the content , the markup, of the link
21     *
22     * @return the markup of the link
23     */

24    StringBuffer JavaDoc getLink();
25 }
26
Popular Tags