001 package railo.transformer.bytecode.statement.tag; 002 003 public class TagComponent extends TagBase{ 004 005 /** 006 * Constructor of the class 007 * @param startLine 008 */ 009 public TagComponent(int startLine) { 010 super(startLine); 011 } 012 /** 013 * Constructor of the class 014 * @param startLine 015 * @param endLine 016 */ 017 public TagComponent(int startLine, int endLine) { 018 super(startLine, endLine); 019 } 020 021 022 }