001    package railo.runtime.tag;
002    
003    import railo.runtime.exp.PageException;
004    import railo.runtime.exp.TagNotSupported;
005    import railo.runtime.ext.tag.TagImpl;
006    
007    public class AjaxImport extends TagImpl {
008            private String csssrc;
009            private String scriptsrc;
010            private String tags;
011            
012    
013    
014            /**
015            * @see javax.servlet.jsp.tagext.Tag#release()
016            */
017            public void release()   {
018                    super.release();
019                    csssrc=null;
020                    scriptsrc=null;
021                    tags=null;
022            }
023     
024            /**
025             * @param csssrc the csssrc to set
026             */
027            public void setCsssrc(String csssrc) {
028                    this.csssrc = csssrc;
029            }
030    
031            /**
032             * @param scriptsrc the scriptsrc to set
033             */
034            public void setScriptsrc(String scriptsrc) {
035                    this.scriptsrc = scriptsrc;
036            }
037    
038            /**
039             * @param tags the tags to set
040             */
041            public void setTags(String tags) {
042                    this.tags = tags;
043            }
044    
045            /**
046            * @see javax.servlet.jsp.tagext.Tag#doStartTag()
047            */
048            public int doStartTag() throws PageException    {
049                    throw new TagNotSupported("AjaxImport");
050                    //return SKIP_BODY;
051            }
052    
053            /**
054            * @see javax.servlet.jsp.tagext.Tag#doEndTag()
055            */
056            public int doEndTag()   {
057                    return EVAL_PAGE;
058            }
059    }