001 package railo.runtime.ext.tag; 002 003 import javax.servlet.jsp.tagext.Tag; 004 005 /** 006 * for tag with appendix like cfx or cusomtags 007 */ 008 public interface AppendixTag extends Tag { 009 /** 010 * @return returns the appendix of the tag 011 */ 012 public String getAppendix(); 013 014 /** 015 * sets the appendix of the tag 016 * @param appendix 017 */ 018 public void setAppendix(String appendix); 019 }