For web application I need more information about classes and properties (I need information about properly visualization on HTML page). I can add these information directly to
myobject.hbm.xml into entity <meta>:
Code:
<hibernate-mapping>
<class name="Customer">
<property name="FirstName" type="String">
<meta attribute="htmlFormatterClass">htmlFormatters.NameHtmlFormatter</class>
</property>
<class>
</hibernate-mapping>
How I can obtain these meta-information ? Must I parse xml file or I can receive this information from hibernate API ?