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