public AXmlElementTextSchema(Song song) {
   super(ELEMENT_NAME);
   this.addAttribute(AXml.ATTR_ANZAHLZEILEN, "" + song.getText().getAnzahlZeilen());
   this.addAttribute(AXml.ATTR_HEIGHTANTEIL, "" + song.getText().getHeightAnteil());
   this.addAttribute(AXml.ATTR_TEXTANZEIGE, "" + song.getText().getTextAnzeige());
   this.addAttribute(
       AXml.ATTR_TEXTHEIGHTANTEIL, "" + song.getSongText().getText().getHeightAnteilZweiteSeite());
 }