package eu.eudat.commons.types.descriptiontemplate.importexport.fielddata; import eu.eudat.commons.enums.FieldType; import eu.eudat.commons.types.xml.XmlSerializable; import org.w3c.dom.Document; import org.w3c.dom.Element; import java.util.Map; public abstract class BaseFieldDataImportExport { private String label; public String getLabel() { return label; } public void setLabel(String label) { this.label = label; } }