1 /*
2 * Title: UseHTMLPageTEI
3 * Description:
4 *
5 * This software is published under the terms of the OpenSymphony Software
6 * License version 1.1, of which a copy has been included with this
7 * distribution in the LICENSE.txt file.
8 */
9
10 package com.opensymphony.module.sitemesh.taglib.decorator;
11
12 /**
13 * TagExtraInfo implementation to expose HTMLPage object as variable.
14 *
15 * @author <a href="joe@truemesh.com">Joe Walnes</a>
16 * @version $Revision: 1.1 $
17 *
18 * @see UsePageTag
19 * @see UsePageTEI
20 */
21 public class UseHTMLPageTEI extends UsePageTEI {
22 protected String getType() {
23 return "com.opensymphony.module.sitemesh.HTMLPage";
24 }
25 }