001// SPDX-License-Identifier: GPL-3.0-or-later 002 003package es.uvigo.esei.sing.textproc.step.xml.definition; 004 005import javax.xml.bind.annotation.XmlRootElement; 006 007/** 008 * Parameter for processing steps which represents a text document with title 009 * entity table name. 010 * 011 * @author Alejandro González García 012 */ 013@XmlRootElement(name = "textDocumentWithTitleTableName") 014public final class TextDocumentWithTitleTableNameProcessingStepParameter extends AbstractProcessingStepParameter {}