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"><matt@indigoegg.com></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 getName() { 15 return "tag"; 16 } 17 18 public int getType() { 19 return LINE; 20 } 21 } 22