Xsltを使用して目的のコード出力を作成することをお勧めします。
この汎用スタイルシートは、ルートノード名をクラスとして使用し、すべての子ノードにそのコンテンツを割り当てます。
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" indent="no" />
<xsl:variable name="newline" select="'
'" />
<xsl:template match="/">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="/node()[1]">
<xsl:variable name="classname" select="local-name()" />
<xsl:value-of select="concat($classname, ' cust=new ', $classname, '();', $newline)"/>
<xsl:for-each select="./*">
<xsl:value-of select="concat(local-name(), '="', text(), '";', $newline)"/>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
適用されたとき
<?xml version="1.0" encoding="utf-8" ?>
<Customer>
<fname>tom</fname>
<lname>jerry</lname>
</Customer>
次の出力が生成されます
Customer cust=new Customer();
fname="tom";
lname="jerry";