KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > opensymphony > webwork > views > velocity > TagDirective


1 /*
2  * Copyright (c) 2002-2003 by OpenSymphony
3  * All rights reserved.
4  */

5 package com.opensymphony.webwork.views.velocity;
6
7
8 /**
9  * @author Matt Ho <a HREF="mailto:matt@indigoegg.com">&lt;matt@indigoegg.com&gt;</a>
10  * @deprecated Automatic JSP tag support doesn't work well and is likely to break. Please use the native Velocity
11  * tags introduced in WebWork 2.2
12  */

13 public class TagDirective extends AbstractTagDirective {
14     public String JavaDoc getName() {
15         return "tag";
16     }
17
18     public int getType() {
19         return LINE;
20     }
21 }
22
Popular Tags