Regel-basierte Erzeugung
Stylesheet:
<xsl:template
match="/foo">
public class <xsl:value-of
select="foo/class-name"/> {
<xsl:apply-templates/>
}
</xsl:template>
<xsl:template
match=“fenster">
...
</xsl:template>
<xsl:template
match=“*[@type=‘text‘]">
...
</xsl:template>
<xsl:template
match=“*[@id]">
...
</xsl:template>
SEP
not
.//