001    package railo.transformer.bytecode.statement.tag;
002    
003    public class TagImport extends TagBase {
004    
005    
006            private String path;
007    
008    
009            /**
010             * Constructor of the class
011             * @param startLine
012             */
013            public TagImport(int startLine) {
014                    super(startLine);
015            }
016            
017            /**
018             * Constructor of the class
019             * @param startLine
020             * @param endLine
021             */
022            public TagImport(int startLine, int endLine) {
023                    super(startLine, endLine);
024            }
025    
026            /**
027             * @return the path
028             */
029            public String getPath() {
030                    return path;
031            }
032    
033            /**
034             * @param path the path to set
035             */
036            public void setPath(String path) {
037                    this.path = path;
038            }
039    
040    
041    
042    }