// Tag interface
//-------------------------------------------------------------------------
public void doTag(XMLOutput output) throws Exception {
ResultSetTag tag = (ResultSetTag) findAncestorWithClass( ResultSetTag.class );
if ( tag == null ) {
throw new JellyException( "This tag must be nested with in a <resultSet> tag" );
}
tag.addRow( getAttributes() );
}