├── .github └── workflows │ ├── build_test.yml │ └── publish_reports.yml ├── .gitignore ├── README.md ├── common ├── plugin │ ├── .gitignore │ ├── lib │ │ ├── .gitignore │ │ ├── org.jboss.tools.hibernate.libs.antlr.v_2_7_7 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.antlr4-runtime.v_4_10 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.bsh.v_2_0_b4 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── .gitkeep │ │ ├── org.jboss.tools.hibernate.libs.byte-buddy.v_1_12 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.classmate.v_1_5 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.commons-collections4.v_4_4 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.dom4j.v_1_6_1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.dom4j.v_2_1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.freemarker.v_2_3 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.h2.v_1_4 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.h2.v_2_1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.hibernate-commons-annotations.v_5_1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.hibernate-commons-annotations.v_6_0 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.jakarta-activation-api.v_2_0 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.jakarta-persistence-api.v_3_0 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.jakarta-persistence-api.v_3_1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.jakarta-transaction-api.v_2_0 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.jakarta-xml-bind-api.v_3_0 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.jandex.v_2_4 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.javassist.v_3_28 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.jaxb.v_2_3 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.jaxb.v_3_0 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.jboss-logging.v_3_4 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.jpa.v_2_2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.jtidy.v_r8-20060801 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ ├── org.jboss.tools.hibernate.libs.transaction-api.v_1_2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ └── pom.xml │ │ └── pom.xml │ └── pom.xml └── pom.xml ├── dependencies.psf ├── docs ├── contribute │ ├── contribute.md │ └── images │ │ ├── add-new-software.png │ │ ├── add-personal-repo.png │ │ ├── available-software-core-tests.png │ │ ├── available-software-plugins.png │ │ ├── create-local-clone.png │ │ ├── eclipse-ide-launcher.png │ │ ├── eclipse-packages-page.png │ │ ├── final-eclipse-window.png │ │ ├── fork-from-github.png │ │ ├── import-maven-projects.png │ │ ├── import-select.png │ │ ├── initial-eclipse-window.png │ │ ├── install-details-core-tests.png │ │ ├── install-details-plugins.png │ │ ├── m2e-connectors-discover.png │ │ ├── m2e-connectors-install-details.png │ │ ├── m2e-connectors-install.png │ │ ├── m2e-connectors-review-licenses.png │ │ ├── mvn-clean-install.png │ │ ├── mvn-version.png │ │ ├── review-licenses-core-tests.png │ │ ├── review-licenses-plugins.png │ │ └── security-warning.png ├── pom.xml └── reference │ ├── en-US │ ├── .directory │ ├── Author_Group.xml │ ├── Book_Info.xml │ ├── Feedback.xml │ ├── Hibernate_Tools_Reference_Guide.ent │ ├── Hibernate_Tools_Reference_Guide.xml │ ├── JPA_project_for_hibernate_jboss_tools.zip │ ├── JPA_project_for_hibernate_jboss_tools_331.zip │ ├── Preface.xml │ ├── Revision_History.xml │ ├── TestHibernate_for_hibernate_jboss_tools.zip │ ├── TestHibernate_for_hibernate_jboss_tools_331.zip │ ├── ant.xml │ ├── codegen.xml │ ├── codegenarchitecture.xml │ ├── database_jboss_tools.zip │ ├── database_jboss_tools_331.zip │ ├── images │ │ ├── code_generation │ │ │ └── code_generation_1.png │ │ ├── favicon.ico │ │ ├── icon.svg │ │ ├── jbosstools_logo.png │ │ └── plugins │ │ │ ├── add_property1.png │ │ │ ├── add_property2.png │ │ │ ├── add_property3.png │ │ │ ├── add_property4.png │ │ │ ├── add_property5.png │ │ │ ├── annotations1.png │ │ │ ├── annotations1_a.png │ │ │ ├── annotations2.png │ │ │ ├── annotations3.png │ │ │ ├── autoLayout.png │ │ │ ├── butt1.png │ │ │ ├── butt2.png │ │ │ ├── butt3.png │ │ │ ├── butt4.png │ │ │ ├── dali_integration1.png │ │ │ ├── dali_integration10.png │ │ │ ├── dali_integration11.png │ │ │ ├── dali_integration12.png │ │ │ ├── dali_integration2.png │ │ │ ├── dali_integration3.png │ │ │ ├── dali_integration4.png │ │ │ ├── dali_integration5.png │ │ │ ├── dali_integration6.png │ │ │ ├── dali_integration7.png │ │ │ ├── dali_integration8.png │ │ │ ├── dali_integration9.png │ │ │ ├── diagram1.png │ │ │ ├── diagram2.png │ │ │ ├── diagramToolbar.png │ │ │ ├── expandState.png │ │ │ ├── exportAsImage.png │ │ │ ├── layout.png │ │ │ ├── map_diagram1.png │ │ │ ├── map_diagram2.png │ │ │ ├── map_diagram3.png │ │ │ ├── openMappingFile_but.png │ │ │ ├── openSourceFile_but.png │ │ │ ├── plugins_0.png │ │ │ ├── plugins_0_a.png │ │ │ ├── plugins_0_b.png │ │ │ ├── plugins_1.png │ │ │ ├── plugins_10.png │ │ │ ├── plugins_11.png │ │ │ ├── plugins_12.png │ │ │ ├── plugins_12_a.png │ │ │ ├── plugins_12_b.png │ │ │ ├── plugins_13.png │ │ │ ├── plugins_14.png │ │ │ ├── plugins_15.png │ │ │ ├── plugins_16.png │ │ │ ├── plugins_17.png │ │ │ ├── plugins_17_a.png │ │ │ ├── plugins_18.png │ │ │ ├── plugins_18_a.png │ │ │ ├── plugins_18_b.png │ │ │ ├── plugins_18_g.png │ │ │ ├── plugins_19.png │ │ │ ├── plugins_19_b.png │ │ │ ├── plugins_19_c.png │ │ │ ├── plugins_19_d.png │ │ │ ├── plugins_2.png │ │ │ ├── plugins_20.png │ │ │ ├── plugins_21_a.png │ │ │ ├── plugins_21_b.png │ │ │ ├── plugins_22.png │ │ │ ├── plugins_2_a.png │ │ │ ├── plugins_3.png │ │ │ ├── plugins_4.png │ │ │ ├── plugins_4_a.png │ │ │ ├── plugins_4_b.png │ │ │ ├── plugins_4_c.png │ │ │ ├── plugins_4_d.png │ │ │ ├── plugins_5.png │ │ │ ├── plugins_6.png │ │ │ ├── plugins_7.png │ │ │ ├── plugins_8.png │ │ │ ├── plugins_8a.png │ │ │ ├── plugins_8b.png │ │ │ ├── plugins_9.png │ │ │ ├── prototypingQueries.png │ │ │ ├── saveDiagram.png │ │ │ ├── sticky_but.png │ │ │ ├── toggleConnections.png │ │ │ ├── toolbarAutolayout.png │ │ │ ├── toolbarExpandCollapse.png │ │ │ ├── toolbarRefresh.png │ │ │ ├── toolbarShowHideConnections.png │ │ │ ├── toolbarShowHideShapes.png │ │ │ ├── toolbarZoom.png │ │ │ └── visibleState.png │ ├── introduction.xml │ ├── master.xml │ ├── plugins.xml │ ├── reverseengineering.xml │ └── setup.xml │ ├── pom.xml │ └── publican.cfg ├── features ├── org.hibernate.eclipse.feature │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ ├── pom.xml │ ├── sourceTemplateFeature │ │ ├── .gitkeep │ │ └── build.properties │ └── sourceTemplatePlugin │ │ ├── about.ini │ │ ├── about.mappings │ │ ├── about.properties │ │ ├── build.properties │ │ └── plugin.properties ├── org.hibernate.eclipse.test.feature │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ ├── pom.xml │ └── sourceTemplateFeature │ │ └── .gitkeep ├── org.hibernate.search.eclipse.feature │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ └── pom.xml ├── org.jboss.tools.hibernate.orm.runtime.feature │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ └── pom.xml ├── org.jboss.tools.hibernate.search.test.feature │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ └── pom.xml └── pom.xml ├── itests ├── org.jboss.tools.hibernate.ui.bot.test │ ├── .gitignore │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── plugin.properties │ ├── pom.xml │ ├── properties │ │ └── hsqlint-bot.properties │ ├── resources │ │ ├── classes │ │ │ ├── Dog.java │ │ │ ├── Owner.java │ │ │ └── Owner.javaclazz │ │ ├── conf │ │ │ └── hibernate │ │ │ │ └── sakila.json │ │ ├── h2_settings.properties │ │ ├── hsqldb18_settings.properties │ │ ├── links.properties │ │ ├── prj │ │ │ ├── antconfiguration │ │ │ │ ├── .classpath │ │ │ │ ├── .project │ │ │ │ ├── genconfiguration.launch │ │ │ │ └── src │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── .gitkeep │ │ │ ├── ecl-jpa10 │ │ │ │ ├── .classpath │ │ │ │ ├── .gitignore │ │ │ │ ├── .project │ │ │ │ └── src │ │ │ │ │ └── META-INF │ │ │ │ │ └── persistence.xml │ │ │ ├── ecl-jpa20 │ │ │ │ ├── .classpath │ │ │ │ ├── .gitignore │ │ │ │ ├── .project │ │ │ │ └── src │ │ │ │ │ └── META-INF │ │ │ │ │ └── persistence.xml │ │ │ ├── ecl-jpa21 │ │ │ │ ├── .classpath │ │ │ │ ├── .gitignore │ │ │ │ ├── .project │ │ │ │ └── src │ │ │ │ │ └── META-INF │ │ │ │ │ └── persistence.xml │ │ │ ├── ecl-jpa22 │ │ │ │ ├── .classpath │ │ │ │ ├── .gitignore │ │ │ │ ├── .project │ │ │ │ └── src │ │ │ │ │ └── META-INF │ │ │ │ │ └── persistence.xml │ │ │ ├── mvn-hibernate36-ent │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ ├── EmptyClass.java │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── gen │ │ │ │ │ │ │ ├── Actor.java │ │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ │ ├── Category.java │ │ │ │ │ │ │ ├── City.java │ │ │ │ │ │ │ ├── Country.java │ │ │ │ │ │ │ ├── Customer.java │ │ │ │ │ │ │ ├── Film.java │ │ │ │ │ │ │ ├── FilmActor.java │ │ │ │ │ │ │ ├── FilmActorId.java │ │ │ │ │ │ │ ├── FilmCategory.java │ │ │ │ │ │ │ ├── FilmCategoryId.java │ │ │ │ │ │ │ ├── FilmText.java │ │ │ │ │ │ │ ├── Inventory.java │ │ │ │ │ │ │ ├── Language.java │ │ │ │ │ │ │ ├── Payment.java │ │ │ │ │ │ │ ├── Rental.java │ │ │ │ │ │ │ ├── Staff.java │ │ │ │ │ │ │ └── Store.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-hibernate36 │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── EmptyClass.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-hibernate43-ent │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ ├── EmptyClass.java │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── gen │ │ │ │ │ │ │ ├── Actor.java │ │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ │ ├── Category.java │ │ │ │ │ │ │ ├── City.java │ │ │ │ │ │ │ ├── Country.java │ │ │ │ │ │ │ ├── Customer.java │ │ │ │ │ │ │ ├── Film.java │ │ │ │ │ │ │ ├── FilmActor.java │ │ │ │ │ │ │ ├── FilmActorId.java │ │ │ │ │ │ │ ├── FilmCategory.java │ │ │ │ │ │ │ ├── FilmCategoryId.java │ │ │ │ │ │ │ ├── FilmText.java │ │ │ │ │ │ │ ├── Inventory.java │ │ │ │ │ │ │ ├── Language.java │ │ │ │ │ │ │ ├── Payment.java │ │ │ │ │ │ │ ├── Rental.java │ │ │ │ │ │ │ ├── Staff.java │ │ │ │ │ │ │ └── Store.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-hibernate43 │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── EmptyClass.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-hibernate50-ent │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ ├── EmptyClass.java │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── gen │ │ │ │ │ │ │ ├── Actor.java │ │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ │ ├── Category.java │ │ │ │ │ │ │ ├── City.java │ │ │ │ │ │ │ ├── Country.java │ │ │ │ │ │ │ ├── Customer.java │ │ │ │ │ │ │ ├── Film.java │ │ │ │ │ │ │ ├── FilmActor.java │ │ │ │ │ │ │ ├── FilmActorId.java │ │ │ │ │ │ │ ├── FilmCategory.java │ │ │ │ │ │ │ ├── FilmCategoryId.java │ │ │ │ │ │ │ ├── FilmText.java │ │ │ │ │ │ │ ├── Inventory.java │ │ │ │ │ │ │ ├── Language.java │ │ │ │ │ │ │ ├── Payment.java │ │ │ │ │ │ │ ├── Rental.java │ │ │ │ │ │ │ ├── Staff.java │ │ │ │ │ │ │ └── Store.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-hibernate50 │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── EmptyClass.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-hibernate54-ent │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ ├── EmptyClass.java │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── gen │ │ │ │ │ │ │ ├── Actor.java │ │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ │ ├── Category.java │ │ │ │ │ │ │ ├── City.java │ │ │ │ │ │ │ ├── Country.java │ │ │ │ │ │ │ ├── Customer.java │ │ │ │ │ │ │ ├── Film.java │ │ │ │ │ │ │ ├── FilmActor.java │ │ │ │ │ │ │ ├── FilmActorId.java │ │ │ │ │ │ │ ├── FilmCategory.java │ │ │ │ │ │ │ ├── FilmCategoryId.java │ │ │ │ │ │ │ ├── FilmText.java │ │ │ │ │ │ │ ├── Inventory.java │ │ │ │ │ │ │ ├── Language.java │ │ │ │ │ │ │ ├── Payment.java │ │ │ │ │ │ │ ├── Rental.java │ │ │ │ │ │ │ ├── Staff.java │ │ │ │ │ │ │ └── Store.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-hibernate54 │ │ │ │ ├── bin │ │ │ │ │ ├── pom.xml │ │ │ │ │ └── src │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ └── EmptyClass.class │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ └── empty.resource │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── java │ │ │ │ │ │ └── EmptyTest.class │ │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── EmptyClass.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-hibernate55-ent │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ ├── EmptyClass.java │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── gen │ │ │ │ │ │ │ ├── Actor.java │ │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ │ ├── Category.java │ │ │ │ │ │ │ ├── City.java │ │ │ │ │ │ │ ├── Country.java │ │ │ │ │ │ │ ├── Customer.java │ │ │ │ │ │ │ ├── Film.java │ │ │ │ │ │ │ ├── FilmActor.java │ │ │ │ │ │ │ ├── FilmActorId.java │ │ │ │ │ │ │ ├── FilmCategory.java │ │ │ │ │ │ │ ├── FilmCategoryId.java │ │ │ │ │ │ │ ├── FilmText.java │ │ │ │ │ │ │ ├── Inventory.java │ │ │ │ │ │ │ ├── Language.java │ │ │ │ │ │ │ ├── Payment.java │ │ │ │ │ │ │ ├── Rental.java │ │ │ │ │ │ │ ├── Staff.java │ │ │ │ │ │ │ └── Store.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-hibernate55 │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ ├── EmptyClass.java │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── Dog.java │ │ │ │ │ │ │ └── Owner.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-hibernate56-ent │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ ├── EmptyClass.java │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── gen │ │ │ │ │ │ │ ├── Actor.java │ │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ │ ├── Category.java │ │ │ │ │ │ │ ├── City.java │ │ │ │ │ │ │ ├── Country.java │ │ │ │ │ │ │ ├── Customer.java │ │ │ │ │ │ │ ├── Film.java │ │ │ │ │ │ │ ├── FilmActor.java │ │ │ │ │ │ │ ├── FilmActorId.java │ │ │ │ │ │ │ ├── FilmCategory.java │ │ │ │ │ │ │ ├── FilmCategoryId.java │ │ │ │ │ │ │ ├── FilmText.java │ │ │ │ │ │ │ ├── Inventory.java │ │ │ │ │ │ │ ├── Language.java │ │ │ │ │ │ │ ├── Payment.java │ │ │ │ │ │ │ ├── Rental.java │ │ │ │ │ │ │ ├── Staff.java │ │ │ │ │ │ │ └── Store.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-hibernate56 │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── EmptyClass.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-hibernate60-ent │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ ├── EmptyClass.java │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── gen │ │ │ │ │ │ │ ├── Actor.java │ │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ │ ├── Category.java │ │ │ │ │ │ │ ├── City.java │ │ │ │ │ │ │ ├── Country.java │ │ │ │ │ │ │ ├── Customer.java │ │ │ │ │ │ │ ├── Film.java │ │ │ │ │ │ │ ├── FilmActor.java │ │ │ │ │ │ │ ├── FilmActorId.java │ │ │ │ │ │ │ ├── FilmCategory.java │ │ │ │ │ │ │ ├── FilmCategoryId.java │ │ │ │ │ │ │ ├── FilmText.java │ │ │ │ │ │ │ ├── Inventory.java │ │ │ │ │ │ │ ├── Language.java │ │ │ │ │ │ │ ├── Payment.java │ │ │ │ │ │ │ ├── Rental.java │ │ │ │ │ │ │ ├── Staff.java │ │ │ │ │ │ │ └── Store.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-hibernate60 │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── EmptyClass.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-hibernate61-ent │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ ├── EmptyClass.java │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── gen │ │ │ │ │ │ │ ├── Actor.java │ │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ │ ├── Category.java │ │ │ │ │ │ │ ├── City.java │ │ │ │ │ │ │ ├── Country.java │ │ │ │ │ │ │ ├── Customer.java │ │ │ │ │ │ │ ├── Film.java │ │ │ │ │ │ │ ├── FilmActor.java │ │ │ │ │ │ │ ├── FilmActorId.java │ │ │ │ │ │ │ ├── FilmCategory.java │ │ │ │ │ │ │ ├── FilmCategoryId.java │ │ │ │ │ │ │ ├── FilmText.java │ │ │ │ │ │ │ ├── Inventory.java │ │ │ │ │ │ │ ├── Language.java │ │ │ │ │ │ │ ├── Payment.java │ │ │ │ │ │ │ ├── Rental.java │ │ │ │ │ │ │ ├── Staff.java │ │ │ │ │ │ │ └── Store.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-hibernate61 │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── EmptyClass.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── empty.resource │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── EmptyTest.java │ │ │ │ │ └── resources │ │ │ │ │ └── empty.resource │ │ │ ├── mvn-jpa21-hibernate55 │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ ├── META-INF │ │ │ │ │ │ │ └── persistence.xml │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── hibernate │ │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ │ ├── Order.java │ │ │ │ │ │ │ ├── StrategyClient.java │ │ │ │ │ │ │ ├── User.java │ │ │ │ │ │ │ └── UserIdGenerator.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── test │ │ │ │ │ └── resources │ │ │ │ │ └── .gitkeep │ │ │ └── mvn-jpa22-hibernate56 │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── persistence.xml │ │ │ │ │ └── org │ │ │ │ │ │ └── hibernate │ │ │ │ │ │ └── ui │ │ │ │ │ │ └── test │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ ├── Order.java │ │ │ │ │ │ ├── StrategyClient.java │ │ │ │ │ │ ├── User.java │ │ │ │ │ │ └── UserIdGenerator.java │ │ │ │ └── resources │ │ │ │ │ └── .gitkeep │ │ │ │ └── test │ │ │ │ └── resources │ │ │ │ └── .gitkeep │ │ ├── project.properties │ │ ├── sql │ │ │ └── SQL Scrapbook 0 │ │ └── src │ │ │ └── org.jboss.hibernate.test │ │ │ ├── Customer.java │ │ │ └── Order.java │ └── src │ │ └── org │ │ └── jboss │ │ └── tools │ │ └── hibernate │ │ ├── reddeer │ │ └── test │ │ │ ├── AntFileExportTest.java │ │ │ ├── CodeGenerationConfigurationTest.java │ │ │ ├── CodeGenerationKeyWordsTest.java │ │ │ ├── ConnectionProfileTest.java │ │ │ ├── ConsoleConfigurationFileTest.java │ │ │ ├── ConsoleConfigurationTest.java │ │ │ ├── CreateJPAProjectTest.java │ │ │ ├── CriteriaEditorCodeAssistTest.java │ │ │ ├── CriteriaEditorTest.java │ │ │ ├── EntityValidationTest.java │ │ │ ├── HQLEditorCodeAssistTest.java │ │ │ ├── HQLEditorTest.java │ │ │ ├── HibernateRedDeerTest.java │ │ │ ├── HibernateUIPartsTest.java │ │ │ ├── JBossDatasourceTest.java │ │ │ ├── JPADetailsViewTest.java │ │ │ ├── JPAEntityGenerationTest.java │ │ │ ├── JPAFacetTest.java │ │ │ ├── JPAUIPartsTest.java │ │ │ ├── JpaAnnotationGenerationTest.java │ │ │ ├── MappingDiagramTest.java │ │ │ ├── MappingFileTest.java │ │ │ ├── PersistenceXMLFileTest.java │ │ │ ├── RevengFileTest.java │ │ │ └── TablesFromJPAEntitiesGeneration.java │ │ └── ui │ │ └── bot │ │ └── test │ │ ├── Activator.java │ │ ├── DatabaseUtils.java │ │ ├── HibernateAllTest.java │ │ ├── HibernateTestException.java │ │ ├── ProjectImporter.java │ │ ├── ProjectUtils.java │ │ ├── SmokeSuite.java │ │ ├── XPathHelper.java │ │ └── factory │ │ ├── ConnectionProfileFactory.java │ │ ├── DriverDefinitionFactory.java │ │ ├── EntityGenerationFactory.java │ │ ├── HibernateToolsFactory.java │ │ ├── JPAProjectFactory.java │ │ ├── ProjectConfigurationFactory.java │ │ └── ResourceFactory.java └── pom.xml ├── orm ├── plugin │ ├── core │ │ ├── org.hibernate.eclipse.console │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── about.html │ │ │ ├── build.properties │ │ │ ├── doc │ │ │ │ ├── codegenwizard.jpg │ │ │ │ ├── consolecfgwizard.jpg │ │ │ │ ├── hbmxmlcompletion.jpg │ │ │ │ ├── hibernatecfgwizard.jpg │ │ │ │ ├── index.html │ │ │ │ ├── newandnoteworthy │ │ │ │ │ ├── alwaysactiveopenquery.png │ │ │ │ │ ├── annotationsupport.png │ │ │ │ │ ├── artifactgeneration.png │ │ │ │ │ ├── cfgxml-propertycomplete.png │ │ │ │ │ ├── classvisualization.png │ │ │ │ │ ├── codegenexporters.gif │ │ │ │ │ ├── codegenlauncher.png │ │ │ │ │ ├── codegenlaunchseamexporter.png │ │ │ │ │ ├── codegenlaunchtab.png │ │ │ │ │ ├── columncompletion.png │ │ │ │ │ ├── completeinsidejava.png │ │ │ │ │ ├── configurationswithnewnodes.png │ │ │ │ │ ├── consolelog.png │ │ │ │ │ ├── criteriaeditor.png │ │ │ │ │ ├── crowdedartififactgen.png │ │ │ │ │ ├── default_.css │ │ │ │ │ ├── dynamicquerytranslation.png │ │ │ │ │ ├── easysetup.png │ │ │ │ │ ├── embeddedruninqueryeditor.png │ │ │ │ │ ├── enableannotationvalidation.png │ │ │ │ │ ├── entitymappingdiagram.png │ │ │ │ │ ├── entitymodel.png │ │ │ │ │ ├── entitymodel_zoomin.png │ │ │ │ │ ├── entitymodel_zoomout.png │ │ │ │ │ ├── freemarkereditor.png │ │ │ │ │ ├── hbm2docwithgraph.jpg │ │ │ │ │ ├── hbmxml-namecompletion.png │ │ │ │ │ ├── hbmxml-tablecompletion.png │ │ │ │ │ ├── hbmxml-typecompletion.png │ │ │ │ │ ├── hbmxml-usertypecompletion.png │ │ │ │ │ ├── hibernate-eclipse-news-3.0.0.alpha4.html │ │ │ │ │ ├── hibernate-eclipse-news-3.1.0.alpha5.html │ │ │ │ │ ├── hibernate-eclipse-news-3.1.0.beta1.html │ │ │ │ │ ├── hibernate-eclipse-news-3.1.0.beta2.html │ │ │ │ │ ├── hibernate-eclipse-news-3.1.0.beta3.html │ │ │ │ │ ├── hibernate-eclipse-news-3.1.0.beta4.html │ │ │ │ │ ├── hibernate-eclipse-news-3.1.0.beta5.html │ │ │ │ │ ├── hibernate-eclipse-news-3.2.0.beta10.html │ │ │ │ │ ├── hibernate-eclipse-news-3.2.0.beta11.html │ │ │ │ │ ├── hibernate-eclipse-news-3.2.0.beta6.html │ │ │ │ │ ├── hibernate-eclipse-news-3.2.0.beta7.html │ │ │ │ │ ├── hibernate-eclipse-news-3.2.0.beta8.html │ │ │ │ │ ├── hibernate-eclipse-news-3.2.0.beta9.html │ │ │ │ │ ├── hibernate3setting.png │ │ │ │ │ ├── hql-completion.png │ │ │ │ │ ├── hqlcriteriaquicknavigation.png │ │ │ │ │ ├── hqleditorsetmaxresults.png │ │ │ │ │ ├── hqlpropertycodecompletion.png │ │ │ │ │ ├── inlinequeryvalidation.png │ │ │ │ │ ├── manytomanyoptlock_ui.png │ │ │ │ │ ├── multiexporter.png │ │ │ │ │ ├── newmappingfilewizard.png │ │ │ │ │ ├── newmappingfilewizard_result.png │ │ │ │ │ ├── newoutline.png │ │ │ │ │ ├── nullinparameters.png │ │ │ │ │ ├── overlaycontenttypes.png │ │ │ │ │ ├── persistencexmlcompletion.png │ │ │ │ │ ├── pluginhelp.png │ │ │ │ │ ├── prettyentitymodel.gif │ │ │ │ │ ├── properties.png │ │ │ │ │ ├── queryparameters.png │ │ │ │ │ ├── revengstrategyinui.png │ │ │ │ │ ├── revengxml_overview.png │ │ │ │ │ ├── revengxml_tablefilters.png │ │ │ │ │ ├── revengxml_tablescolumn.png │ │ │ │ │ ├── revengxml_typemappings.png │ │ │ │ │ ├── wikisearch.png │ │ │ │ │ ├── wizard-artifactnewopt.png │ │ │ │ │ ├── wizard-cfgxml-newoptions.png │ │ │ │ │ ├── wizard-reveng.png │ │ │ │ │ └── xmlcatalog.png │ │ │ │ └── queryconsole.jpg │ │ │ ├── icons │ │ │ │ ├── hibernate_small_icon.gif │ │ │ │ └── images │ │ │ │ │ ├── 1to1property.gif │ │ │ │ │ ├── 1tonproperty.gif │ │ │ │ │ ├── ant_codegen_export.gif │ │ │ │ │ ├── anyproperty.gif │ │ │ │ │ ├── catalog.gif │ │ │ │ │ ├── clear.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ ├── close_disabled.gif │ │ │ │ │ ├── columns.gif │ │ │ │ │ ├── componentproperty.gif │ │ │ │ │ ├── connected.gif │ │ │ │ │ ├── criteria_editor.gif │ │ │ │ │ ├── criteria_editor_connect.gif │ │ │ │ │ ├── database.gif │ │ │ │ │ ├── error.gif │ │ │ │ │ ├── exclamation.gif │ │ │ │ │ ├── execute.gif │ │ │ │ │ ├── format.gif │ │ │ │ │ ├── function.gif │ │ │ │ │ ├── generator.gif │ │ │ │ │ ├── hibernate.gif │ │ │ │ │ ├── hibernate_config.gif │ │ │ │ │ ├── hibernate_icon.jpg │ │ │ │ │ ├── hibernate_launch.png │ │ │ │ │ ├── hibernate_mapping.gif │ │ │ │ │ ├── hibernate_overlay.gif │ │ │ │ │ ├── hibernate_small_icon.jpg │ │ │ │ │ ├── hicon.gif │ │ │ │ │ ├── hicon.jpg │ │ │ │ │ ├── hql_editor.gif │ │ │ │ │ ├── hql_editor_connect.gif │ │ │ │ │ ├── idproperty.gif │ │ │ │ │ ├── ignoreparameter.gif │ │ │ │ │ ├── java.gif │ │ │ │ │ ├── jboss.gif │ │ │ │ │ ├── layout.gif │ │ │ │ │ ├── layout_disabled.gif │ │ │ │ │ ├── mapped_class.gif │ │ │ │ │ ├── mapping.gif │ │ │ │ │ ├── mto1property.gif │ │ │ │ │ ├── mtoaproperty.gif │ │ │ │ │ ├── mtonproperty.gif │ │ │ │ │ ├── new_param.gif │ │ │ │ │ ├── newhibernate_wiz.gif │ │ │ │ │ ├── ovr16 │ │ │ │ │ ├── error_co.gif │ │ │ │ │ ├── obj_ovr_error.gif │ │ │ │ │ ├── obj_ovr_server.gif │ │ │ │ │ ├── obj_ovr_server_off.gif │ │ │ │ │ └── warning_co.gif │ │ │ │ │ ├── parameter.gif │ │ │ │ │ ├── pindown.jpg │ │ │ │ │ ├── pindown.png │ │ │ │ │ ├── pinup.jpg │ │ │ │ │ ├── pinup.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── primary_key.gif │ │ │ │ │ ├── property.gif │ │ │ │ │ ├── refresh_run.gif │ │ │ │ │ ├── reload.gif │ │ │ │ │ ├── runextern_no.png │ │ │ │ │ ├── runextern_yes.png │ │ │ │ │ ├── schema.gif │ │ │ │ │ ├── table.gif │ │ │ │ │ ├── treeminus.gif │ │ │ │ │ ├── treeplus.gif │ │ │ │ │ ├── types.gif │ │ │ │ │ ├── unknowntypeproperty.gif │ │ │ │ │ ├── unmapped_class.gif │ │ │ │ │ ├── versionproperty.gif │ │ │ │ │ └── xpl │ │ │ │ │ ├── complete_tsk.gif │ │ │ │ │ ├── incomplete_tsk.gif │ │ │ │ │ ├── removeall.gif │ │ │ │ │ └── removeall_disabled.gif │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ ├── schema │ │ │ │ └── exporters.exsd │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── hibernate │ │ │ │ └── eclipse │ │ │ │ ├── builder │ │ │ │ └── HibernateBuilder.java │ │ │ │ ├── codegen │ │ │ │ ├── ExportAntCodeGenWizard.java │ │ │ │ └── ExportAntCodeGenWizardPage.java │ │ │ │ ├── console │ │ │ │ ├── AbstractQueryEditor.java │ │ │ │ ├── ComboContribution.java │ │ │ │ ├── ConfigurationCombo.java │ │ │ │ ├── ConsolePreferencesConstants.java │ │ │ │ ├── DeleteProjectParticipant.java │ │ │ │ ├── EclipseConsoleConfiguration.java │ │ │ │ ├── EclipseConsoleConfigurationPreferences.java │ │ │ │ ├── EclipseLaunchConsoleConfigurationPreferences.java │ │ │ │ ├── FileFilter.java │ │ │ │ ├── HibernateConsolePerspectiveFactory.java │ │ │ │ ├── HibernateConsolePlugin.java │ │ │ │ ├── HibernateConsoleSaveParticipant.java │ │ │ │ ├── QueryEditor.java │ │ │ │ ├── QueryEditorInput.java │ │ │ │ ├── QueryEditorStorage.java │ │ │ │ ├── actions │ │ │ │ │ ├── AddConfigurationAction.java │ │ │ │ │ ├── BuildSessionFactoryAction.java │ │ │ │ │ ├── ClearAction.java │ │ │ │ │ ├── ClearHQLEditorAction.java │ │ │ │ │ ├── CloseAllQueryPageAction.java │ │ │ │ │ ├── CloseConfigAction.java │ │ │ │ │ ├── CloseQueryPageAction.java │ │ │ │ │ ├── ConsoleConfigReadyUseBaseAction.java │ │ │ │ │ ├── ConsoleConfigurationBasedAction.java │ │ │ │ │ ├── CriteriaEditorAction.java │ │ │ │ │ ├── DeleteConfigurationAction.java │ │ │ │ │ ├── EditConsoleConfiguration.java │ │ │ │ │ ├── EditorActionDelegate.java │ │ │ │ │ ├── ExecuteQueryAction.java │ │ │ │ │ ├── HQLScratchpadAction.java │ │ │ │ │ ├── HTConstants.java │ │ │ │ │ ├── JTidyFormatAction.java │ │ │ │ │ ├── OpenActionDelegate.java │ │ │ │ │ ├── OpenMappingAction.java │ │ │ │ │ ├── OpenQueryEditorAction.java │ │ │ │ │ ├── OpenSourceAction.java │ │ │ │ │ ├── RefreshAction.java │ │ │ │ │ ├── RenameAction.java │ │ │ │ │ └── StickResTabAction.java │ │ │ │ ├── model │ │ │ │ │ ├── IConsoleConfigurationNameProvider.java │ │ │ │ │ ├── IRevEngColumn.java │ │ │ │ │ ├── IRevEngGenerator.java │ │ │ │ │ ├── IRevEngParameter.java │ │ │ │ │ ├── IRevEngPrimaryKey.java │ │ │ │ │ ├── IRevEngTable.java │ │ │ │ │ ├── IReverseEngineeringDefinition.java │ │ │ │ │ ├── ITableFilter.java │ │ │ │ │ ├── ITypeMapping.java │ │ │ │ │ ├── Notifiable.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── ReverseEngineeringDefinitionImpl.java │ │ │ │ │ │ ├── TableFilterImpl.java │ │ │ │ │ │ └── TypeMappingImpl.java │ │ │ │ ├── preferences │ │ │ │ │ └── HibernateConsolePreferencePage.java │ │ │ │ ├── properties │ │ │ │ │ ├── HibernatePropertiesConstants.java │ │ │ │ │ └── HibernatePropertyPage.java │ │ │ │ ├── utils │ │ │ │ │ ├── AutoResizeTableLayout.java │ │ │ │ │ ├── ClassLoaderHelper.java │ │ │ │ │ ├── DialogSelectionHelper.java │ │ │ │ │ ├── DriverClassHelpers.java │ │ │ │ │ ├── FileUtils.java │ │ │ │ │ ├── LaunchHelper.java │ │ │ │ │ ├── OpenMappingUtils.java │ │ │ │ │ ├── ProjectUtils.java │ │ │ │ │ └── xpl │ │ │ │ │ │ ├── DialogSelectionHelper.java │ │ │ │ │ │ ├── FolderSelectionDialog.java │ │ │ │ │ │ └── TypedElementSelectionValidator.java │ │ │ │ ├── viewers │ │ │ │ │ └── xpl │ │ │ │ │ │ └── MTreeViewer.java │ │ │ │ ├── views │ │ │ │ │ ├── AbstractReconcilingStrategy.java │ │ │ │ │ ├── ConfigurationPropertySource.java │ │ │ │ │ ├── ConfigurationsContentProvider.java │ │ │ │ │ ├── ConfigurationsViewActionGroup.java │ │ │ │ │ ├── ConsoleConfigurationPropertySource.java │ │ │ │ │ ├── ConsoleConfigurationPropertySourceProvider.java │ │ │ │ │ ├── DynamicSQLPreviewView.java │ │ │ │ │ ├── IQueryParametersPage.java │ │ │ │ │ ├── KnownConfigurationsProvider.java │ │ │ │ │ ├── KnownConfigurationsView.java │ │ │ │ │ ├── NavigatorProvider.java │ │ │ │ │ ├── QueryPageTabView.java │ │ │ │ │ ├── QueryPageTabViewActionGroup.java │ │ │ │ │ ├── QueryPageViewer.java │ │ │ │ │ ├── QueryParametersPage.java │ │ │ │ │ ├── QueryParametersView.java │ │ │ │ │ ├── ReloadConfigurationAction.java │ │ │ │ │ ├── SchemaExportAction.java │ │ │ │ │ ├── StringArrayDialogCellEditor.java │ │ │ │ │ ├── TreeNodeContentProvider.java │ │ │ │ │ ├── navigator │ │ │ │ │ │ ├── AdaptableWrapper.java │ │ │ │ │ │ ├── ClearPlaceHolderJob.java │ │ │ │ │ │ ├── KnownConfigurationsNavigator.java │ │ │ │ │ │ ├── PendingJob.java │ │ │ │ │ │ ├── PendingNode.java │ │ │ │ │ │ └── PendingUIJob.java │ │ │ │ │ └── properties │ │ │ │ │ │ ├── HibernatePropertySourceProvider.java │ │ │ │ │ │ └── QueryPagePropertySource.java │ │ │ │ ├── wizards │ │ │ │ │ ├── BestGuessConsoleConfigurationVisitor.java │ │ │ │ │ ├── CollectingSearchRequestor.java │ │ │ │ │ ├── ConsoleConfigurationCreationWizard.java │ │ │ │ │ ├── ConsoleConfigurationWizardPage.java │ │ │ │ │ ├── Messages.java │ │ │ │ │ ├── NewConfigurationWizard.java │ │ │ │ │ ├── NewConfigurationWizardPage.java │ │ │ │ │ ├── NewReverseEngineeringFileWizard.java │ │ │ │ │ ├── SelectConnectionProfileDialog.java │ │ │ │ │ ├── TableFilterCellModifier.java │ │ │ │ │ ├── TableFilterContentProvider.java │ │ │ │ │ ├── TableFilterLabelProvider.java │ │ │ │ │ ├── TableFilterView.java │ │ │ │ │ ├── TableFilterWizardPage.java │ │ │ │ │ ├── TreeToTableComposite.java │ │ │ │ │ ├── TypeMappingCellModifier.java │ │ │ │ │ ├── TypeMappingContentProvider.java │ │ │ │ │ ├── TypeMappingLabelProvider.java │ │ │ │ │ ├── UpDownListComposite.java │ │ │ │ │ └── messages.properties │ │ │ │ └── workbench │ │ │ │ │ ├── BaseNodeWorkbenchAdapter.java │ │ │ │ │ ├── BasicWorkbenchAdapter.java │ │ │ │ │ ├── BeanPropertyDescriptor.java │ │ │ │ │ ├── ColumnWorkbenchAdapter.java │ │ │ │ │ ├── ConfigurationAdapterFactory.java │ │ │ │ │ ├── ConfigurationWorkbenchAdapter.java │ │ │ │ │ ├── ConsoleConfigurationWorkbenchAdapter.java │ │ │ │ │ ├── DeferredContentProvider.java │ │ │ │ │ ├── GenericPropertySource.java │ │ │ │ │ ├── KnownConfigurationsWorkbenchAdapter.java │ │ │ │ │ ├── LazyDatabaseSchema.java │ │ │ │ │ ├── LazyDatabaseSchemaWorkbenchAdapter.java │ │ │ │ │ ├── LazySessionFactory.java │ │ │ │ │ ├── LazySessionFactoryAdapter.java │ │ │ │ │ ├── Messages.java │ │ │ │ │ ├── OverlayImageIcon.java │ │ │ │ │ ├── PersistentClassWorkbenchAdapter.java │ │ │ │ │ ├── PrimaryKeyWorkbenchAdapter.java │ │ │ │ │ ├── ProjectCompilerVersionChecker.java │ │ │ │ │ ├── PropertyWorkbenchAdapter.java │ │ │ │ │ ├── TableContainer.java │ │ │ │ │ ├── TableContainerWorkbenchAdapter.java │ │ │ │ │ ├── TableModelList.java │ │ │ │ │ ├── TableWorkbenchAdapter.java │ │ │ │ │ ├── ValueTypeNameHelper.java │ │ │ │ │ ├── ValueWorkbenchAdapter.java │ │ │ │ │ ├── messages.properties │ │ │ │ │ └── xpl │ │ │ │ │ └── AnyAdaptableLabelProvider.java │ │ │ │ ├── criteriaeditor │ │ │ │ ├── CriteriaEditor.java │ │ │ │ ├── CriteriaEditorActionContributor.java │ │ │ │ ├── CriteriaEditorDocumentSetupParticipant.java │ │ │ │ ├── CriteriaEditorInput.java │ │ │ │ ├── CriteriaEditorInputFactory.java │ │ │ │ ├── CriteriaEditorStorage.java │ │ │ │ ├── JavaCompletionProcessor.java │ │ │ │ └── JavaViewerConfiguration.java │ │ │ │ ├── facet │ │ │ │ └── HibernateCoreFacetInstallDelegate.java │ │ │ │ ├── graph │ │ │ │ ├── AbstractGraphViewPart.java │ │ │ │ ├── ColumnEditPart.java │ │ │ │ ├── EntityGraphView.java │ │ │ │ ├── GraphViewActionGroup.java │ │ │ │ ├── HibernateConfigurationPartFactory.java │ │ │ │ ├── RelationalConfigurationEditPart.java │ │ │ │ ├── RelationalConfigurationEditPartFactory.java │ │ │ │ ├── RelationalGraphView.java │ │ │ │ ├── actions │ │ │ │ │ └── ToggleLayoutAction.java │ │ │ │ ├── anchor │ │ │ │ │ └── LeftOrRightParentAnchor.java │ │ │ │ ├── command │ │ │ │ │ ├── MoveEditPartCommand.java │ │ │ │ │ └── MoveGraphNodeEditPartCommand.java │ │ │ │ ├── figures │ │ │ │ │ ├── EditableLabel.java │ │ │ │ │ ├── FiguresConstants.java │ │ │ │ │ ├── NodeHeaderFigure.java │ │ │ │ │ ├── PersistentClassFigure.java │ │ │ │ │ ├── PropertiesFigure.java │ │ │ │ │ ├── RoundedLineBorder.java │ │ │ │ │ └── TableFigure.java │ │ │ │ ├── layout │ │ │ │ │ ├── ClusterEdgeCreator.java │ │ │ │ │ ├── DelegatingLayoutManager.java │ │ │ │ │ ├── DirectedGraphLayoutVisitor.java │ │ │ │ │ ├── DummyEdgeCreator.java │ │ │ │ │ ├── DummyEdgePart.java │ │ │ │ │ ├── GraphAnimation.java │ │ │ │ │ ├── GraphLayoutManager.java │ │ │ │ │ ├── GraphXYLayout.java │ │ │ │ │ ├── NodeJoiningDirectedGraphLayout.java │ │ │ │ │ └── xpl │ │ │ │ │ │ └── OldGraphVisitor.java │ │ │ │ ├── model │ │ │ │ │ ├── AssociationViewAdapter.java │ │ │ │ │ ├── ColumnViewAdapter.java │ │ │ │ │ ├── ConfigurationViewAdapter.java │ │ │ │ │ ├── GraphNode.java │ │ │ │ │ ├── InheritanceViewAdapter.java │ │ │ │ │ ├── PersistentClassViewAdapter.java │ │ │ │ │ ├── PropertyAssociationViewAdapter.java │ │ │ │ │ ├── PropertyViewAdapter.java │ │ │ │ │ └── TableViewAdapter.java │ │ │ │ ├── parts │ │ │ │ │ ├── AssociationEditPart.java │ │ │ │ │ ├── ConfigurationEditPart.java │ │ │ │ │ ├── GraphNodeEditPart.java │ │ │ │ │ ├── PersistentClassEditPart.java │ │ │ │ │ ├── PropertyEditPart.java │ │ │ │ │ └── TableEditPart.java │ │ │ │ └── policy │ │ │ │ │ ├── ConfigurationLayoutEditPolicy.java │ │ │ │ │ ├── PersistentClassLayoutPolicy.java │ │ │ │ │ └── PropertySelectionPolicy.java │ │ │ │ ├── hqleditor │ │ │ │ ├── CompletionHelper.java │ │ │ │ ├── CompletionProposal.java │ │ │ │ ├── DisplayStringProposalComparator.java │ │ │ │ ├── HQLBaseLexer.java │ │ │ │ ├── HQLCodeScanner.java │ │ │ │ ├── HQLColors.java │ │ │ │ ├── HQLCompletionProcessor.java │ │ │ │ ├── HQLEditor.java │ │ │ │ ├── HQLEditorActionContributor.java │ │ │ │ ├── HQLEditorDocumentSetupParticipant.java │ │ │ │ ├── HQLEditorInput.java │ │ │ │ ├── HQLEditorInputFactory.java │ │ │ │ ├── HQLEditorStorage.java │ │ │ │ ├── HQLFormattingStrategy.java │ │ │ │ ├── HQLLexerRule.java │ │ │ │ ├── HQLPartitionScanner.java │ │ │ │ ├── HQLSourceViewer.java │ │ │ │ ├── HQLSourceViewerConfiguration.java │ │ │ │ ├── HQLTextHover.java │ │ │ │ ├── HQLTokenTypes.java │ │ │ │ ├── HQLWordDetector.java │ │ │ │ ├── HibernateResultCollector.java │ │ │ │ ├── LoadConsoleCFGCompletionProposal.java │ │ │ │ ├── MinimalDiffContextInformationValidator.java │ │ │ │ └── preferences │ │ │ │ │ ├── HQLEditorPreferencePage.java │ │ │ │ │ ├── HQLPreferenceConstants.java │ │ │ │ │ └── PreferenceInitializer.java │ │ │ │ ├── launch │ │ │ │ ├── AddPropertyDialog.java │ │ │ │ ├── CodeGenXMLFactory.java │ │ │ │ ├── CodeGenerationLaunchDelegate.java │ │ │ │ ├── CodeGenerationProcessListener.java │ │ │ │ ├── CodeGenerationSettingsTab.java │ │ │ │ ├── ConnectionProfileCtrl.java │ │ │ │ ├── ConsoleConfigurationJavaClasspathTab.java │ │ │ │ ├── ConsoleConfigurationLaunchDelegate.java │ │ │ │ ├── ConsoleConfigurationMainTab.java │ │ │ │ ├── ConsoleConfigurationMappingsTab.java │ │ │ │ ├── ConsoleConfigurationOptionsTab.java │ │ │ │ ├── ConsoleConfigurationTab.java │ │ │ │ ├── ConsoleConfigurationTabGroup.java │ │ │ │ ├── DirectoryBrowseField.java │ │ │ │ ├── ExporterFactoryPropertySource.java │ │ │ │ ├── ExporterSettingsTab.java │ │ │ │ ├── ExportersXMLAttributeDescription.java │ │ │ │ ├── GeneralExceptionStatusHandler.java │ │ │ │ ├── ICodeGenerationLaunchConstants.java │ │ │ │ ├── IConsoleConfigurationLaunchConstants.java │ │ │ │ ├── LaunchConfigurationTabGroup.java │ │ │ │ ├── LaunchMenuDelegate.java │ │ │ │ ├── OpenHibernateToolsConfigurations.java │ │ │ │ ├── ant-tasks-description.xml │ │ │ │ └── core │ │ │ │ │ └── refactoring │ │ │ │ │ ├── CodeGenerationConsoleNameChange.java │ │ │ │ │ ├── CodeGenerationResourceNameChange.java │ │ │ │ │ ├── ConnectionProfileRenameChange.java │ │ │ │ │ ├── ConnectionProfileRenameParticipant.java │ │ │ │ │ ├── ConsoleConfigurationDeleteJavaProjectChange.java │ │ │ │ │ ├── ConsoleConfigurationEntityResolverChange.java │ │ │ │ │ ├── ConsoleConfigurationITypeMoveParticipant.java │ │ │ │ │ ├── ConsoleConfigurationITypeRenameParticipant.java │ │ │ │ │ ├── ConsoleConfigurationNamingStrategyChange.java │ │ │ │ │ ├── ConsoleConfigurationRenameParticipant.java │ │ │ │ │ ├── ConsoleConfigurationRenameProcessor.java │ │ │ │ │ ├── HibernateRefactoringUtil.java │ │ │ │ │ ├── LaunchConfigurationResourceNameChange.java │ │ │ │ │ ├── Messages.java │ │ │ │ │ ├── MoveResourceParticipant.java │ │ │ │ │ ├── ProjectDefaultConfigurationChange.java │ │ │ │ │ ├── RenameResourceParticipant.java │ │ │ │ │ └── messages.properties │ │ │ │ ├── nature │ │ │ │ └── HibernateNature.java │ │ │ │ ├── util │ │ │ │ └── xpl │ │ │ │ │ └── PlatformStatusLineUtil.java │ │ │ │ └── utils │ │ │ │ ├── HibernateEclipseUtils.java │ │ │ │ ├── JoinedIterator.java │ │ │ │ ├── XMLPrettyPrinter.java │ │ │ │ └── jtidy.properties │ │ ├── org.hibernate.eclipse.help │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── README │ │ │ ├── about.html │ │ │ ├── build.properties │ │ │ ├── doc.zip │ │ │ ├── hibernate-build.xml │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ ├── src │ │ │ │ └── org │ │ │ │ │ └── hibernate │ │ │ │ │ └── eclipse │ │ │ │ │ └── help │ │ │ │ │ └── HelpPlugin.java │ │ │ ├── toc.apiref.xsl │ │ │ ├── toc.refdoc.xsl │ │ │ ├── toc.xml │ │ │ ├── tocapireference.xml │ │ │ ├── tocreferencedocumentation.xml │ │ │ └── toctoolsreference.xml │ │ ├── org.hibernate.eclipse.jdt.ui │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── about.html │ │ │ ├── build.properties │ │ │ ├── icons │ │ │ │ ├── hibernate_proposalcategory.png │ │ │ │ └── hibernate_small_icon.gif │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── hibernate │ │ │ │ └── eclipse │ │ │ │ └── jdt │ │ │ │ └── ui │ │ │ │ ├── Activator.java │ │ │ │ ├── internal │ │ │ │ ├── BasicQuickAssistProcessor.java │ │ │ │ ├── CriteriaQuickAssistProcessor.java │ │ │ │ ├── DebugJavaCompletionProposalComputer.java │ │ │ │ ├── ELTransformer.java │ │ │ │ ├── ExternalActionQuickAssistProposal.java │ │ │ │ ├── HQLDetector.java │ │ │ │ ├── HQLExpressionCompilerParticipant.java │ │ │ │ ├── HQLJavaCompletionProposalComputer.java │ │ │ │ ├── HQLProblem.java │ │ │ │ ├── HQLQuickAssistProcessor.java │ │ │ │ ├── JdtUiMessages.java │ │ │ │ ├── JdtUiMessages.properties │ │ │ │ ├── SaveQueryEditorListener.java │ │ │ │ └── jpa │ │ │ │ │ ├── actions │ │ │ │ │ ├── JPAMapToolActionDelegate.java │ │ │ │ │ └── JPAMapToolActor.java │ │ │ │ │ ├── collect │ │ │ │ │ ├── AllEntitiesInfoCollector.java │ │ │ │ │ ├── CollectEntityInfo.java │ │ │ │ │ └── CompilationUnitCollector.java │ │ │ │ │ ├── common │ │ │ │ │ ├── EntityInfo.java │ │ │ │ │ ├── EntityInfosCollection.java │ │ │ │ │ ├── JPAConst.java │ │ │ │ │ ├── OwnerType.java │ │ │ │ │ ├── RefColumnInfo.java │ │ │ │ │ ├── RefEntityInfo.java │ │ │ │ │ ├── RefFieldInfo.java │ │ │ │ │ ├── RefType.java │ │ │ │ │ └── Utils.java │ │ │ │ │ └── process │ │ │ │ │ ├── AllEntitiesProcessor.java │ │ │ │ │ ├── AnnotStyle.java │ │ │ │ │ ├── ChangeStructure.java │ │ │ │ │ ├── ProcessEntityInfo.java │ │ │ │ │ └── wizard │ │ │ │ │ ├── EntitiesList.java │ │ │ │ │ ├── EntitiesSource.java │ │ │ │ │ ├── HibernateJPARefactoring.java │ │ │ │ │ ├── HibernateJPAWizard.java │ │ │ │ │ ├── HibernateJPAWizardDataFactory.java │ │ │ │ │ ├── IHibernateJPAWizardData.java │ │ │ │ │ ├── IHibernateJPAWizardParams.java │ │ │ │ │ └── ResolveAmbiguous.java │ │ │ │ └── wizards │ │ │ │ ├── AddRemoveTableComposite.java │ │ │ │ ├── ConfigurationActor.java │ │ │ │ ├── NewHibernateMappingElementsSelectionPage2.java │ │ │ │ ├── NewHibernateMappingFilePage.java │ │ │ │ ├── NewHibernateMappingFileWizard.java │ │ │ │ └── NewHibernateMappingPreviewPage.java │ │ ├── org.hibernate.eclipse.mapper │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── about.html │ │ │ ├── build.properties │ │ │ ├── dtd │ │ │ │ ├── hibernate-configuration-3.0.dtd │ │ │ │ ├── hibernate-mapping-3.0.dtd │ │ │ │ └── hibernate-reverse-engineering-3.0.dtd │ │ │ ├── icons │ │ │ │ ├── hibernate_small_icon.gif │ │ │ │ └── images │ │ │ │ │ ├── 1to1property.gif │ │ │ │ │ ├── 1tonproperty.gif │ │ │ │ │ ├── anyproperty.gif │ │ │ │ │ ├── clear.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ ├── close_disabled.gif │ │ │ │ │ ├── componentproperty.gif │ │ │ │ │ ├── execute.gif │ │ │ │ │ ├── hibernate_config.gif │ │ │ │ │ ├── hibernate_icon.jpg │ │ │ │ │ ├── hibernate_mapping.gif │ │ │ │ │ ├── hibernate_overlay.gif │ │ │ │ │ ├── hibernate_small_icon.jpg │ │ │ │ │ ├── hicon.jpg │ │ │ │ │ ├── idproperty.gif │ │ │ │ │ ├── mapped_class.gif │ │ │ │ │ ├── mto1property.gif │ │ │ │ │ ├── mtoaproperty.gif │ │ │ │ │ ├── mtonproperty.gif │ │ │ │ │ ├── pindown.jpg │ │ │ │ │ ├── pinup.jpg │ │ │ │ │ ├── property.gif │ │ │ │ │ ├── types.gif │ │ │ │ │ ├── unknowntypeproperty.gif │ │ │ │ │ ├── unmapped_class.gif │ │ │ │ │ └── versionproperty.gif │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── hibernate │ │ │ │ └── eclipse │ │ │ │ └── mapper │ │ │ │ ├── MapperMessages.java │ │ │ │ ├── MapperMessages.properties │ │ │ │ ├── MapperPlugin.java │ │ │ │ ├── editors │ │ │ │ ├── CFGXMLContentAssistProcessor.java │ │ │ │ ├── CFGXMLStructuredTextViewerConfiguration.java │ │ │ │ ├── ChooseConsoleConfigurationDialog.java │ │ │ │ ├── HBMXMLContentAssistProcessor.java │ │ │ │ ├── HBMXMLHyperlink.java │ │ │ │ ├── HBMXMLHyperlinkDetector.java │ │ │ │ ├── HBMXMLStructuredTextViewerConfiguration.java │ │ │ │ ├── HibernateCfgXmlEditor.java │ │ │ │ ├── HibernateContentAssistProcessor.java │ │ │ │ ├── PersistenceUnitStructuredTextViewerConfiguration.java │ │ │ │ ├── ReverseEngineeringEditor.java │ │ │ │ ├── ReverseEngineeringEditorContributor.java │ │ │ │ ├── SQLTypeContentProvider.java │ │ │ │ ├── StructuredTextViewerConfigurationUtil.java │ │ │ │ ├── reveng │ │ │ │ │ ├── ColumnDetailsPage.java │ │ │ │ │ ├── ConsoleConfigNamePart.java │ │ │ │ │ ├── CounterFormPart.java │ │ │ │ │ ├── FormTextEntryListenerAdapter.java │ │ │ │ │ ├── GeneratorDetailsPage.java │ │ │ │ │ ├── HibernateConfigurationForm.java │ │ │ │ │ ├── IFormTextEntryListener.java │ │ │ │ │ ├── ParamDetailsPage.java │ │ │ │ │ ├── PrimaryKeyDetailsPage.java │ │ │ │ │ ├── RevEngDetailsPage.java │ │ │ │ │ ├── RevEngFormEditorPart.java │ │ │ │ │ ├── RevEngOverviewPage.java │ │ │ │ │ ├── RevEngSectionPart.java │ │ │ │ │ ├── RevEngTableFilterPage.java │ │ │ │ │ ├── RevEngTablesPage.java │ │ │ │ │ ├── RevEngTypeMappingPage.java │ │ │ │ │ ├── TableDetailsPage.java │ │ │ │ │ ├── TableFilterFormPart.java │ │ │ │ │ ├── TablePropertiesBlock.java │ │ │ │ │ ├── TablePropertiesContentProvider.java │ │ │ │ │ ├── TablePropertiesLabelProvider.java │ │ │ │ │ ├── TypeMappingFormPart.java │ │ │ │ │ ├── TypeMappingView.java │ │ │ │ │ └── xpl │ │ │ │ │ │ ├── CheckedTreeSelectionDialog.java │ │ │ │ │ │ ├── FormTextEntry.java │ │ │ │ │ │ └── MultiPageEditorContributor.java │ │ │ │ └── xpl │ │ │ │ │ ├── BaseXMLContentAssistProcessor.java │ │ │ │ │ ├── BaseXMLHyperlinkSupport.java │ │ │ │ │ └── XMLFormEditorPart.java │ │ │ │ ├── extractor │ │ │ │ ├── ColumnNameHandler.java │ │ │ │ ├── FieldPropertyHandler.java │ │ │ │ ├── GeneratorTypeHandler.java │ │ │ │ ├── HBMInfoExtractor.java │ │ │ │ ├── HBMInfoHandler.java │ │ │ │ ├── HibernateTypeDescriptor.java │ │ │ │ ├── HibernateTypeHandler.java │ │ │ │ ├── JavaTypeHandler.java │ │ │ │ ├── PackageHandler.java │ │ │ │ ├── PropertyAccessHandler.java │ │ │ │ └── TableNameHandler.java │ │ │ │ ├── factory │ │ │ │ ├── ObserverAdapterFactory.java │ │ │ │ └── UnknownNodeAdapter.java │ │ │ │ ├── model │ │ │ │ ├── DOMAdapter.java │ │ │ │ ├── DOMModelUtil.java │ │ │ │ ├── DOMReverseEngineeringDefinition.java │ │ │ │ ├── RevEngColumnAdapter.java │ │ │ │ ├── RevEngGeneratorAdapter.java │ │ │ │ ├── RevEngParamAdapter.java │ │ │ │ ├── RevEngPrimaryKeyAdapter.java │ │ │ │ ├── RevEngTableAdapter.java │ │ │ │ ├── TableFilterAdapter.java │ │ │ │ └── TypeMappingAdapter.java │ │ │ │ ├── modelhandler │ │ │ │ ├── ModelHandlerForCFGXML.java │ │ │ │ ├── ModelHandlerForHBMXML.java │ │ │ │ ├── ModelHandlerForPersistenceUnitXML.java │ │ │ │ └── ModelHandlerForREVENGXML.java │ │ │ │ ├── registry │ │ │ │ ├── AdapterFactoryProviderForCFGXML.java │ │ │ │ ├── AdapterFactoryProviderForHBMXML.java │ │ │ │ ├── AdapterFactoryProviderForREVENGXML.java │ │ │ │ └── AdapterFactoryProviderForXML.java │ │ │ │ └── views │ │ │ │ └── contentoutline │ │ │ │ ├── HibernateXMLContentOutlineConfiguration.java │ │ │ │ ├── JFaceNodeAdapterFactoryForXML.java │ │ │ │ └── JFaceNodeAdapterForXML.java │ │ ├── org.hibernate.eclipse │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── about.html │ │ │ ├── about.ini │ │ │ ├── about.mappings │ │ │ ├── about.properties │ │ │ ├── build.properties │ │ │ ├── hibernate-log4j.properties │ │ │ ├── hibernate_icon.gif │ │ │ ├── icons │ │ │ │ ├── hibernate_small_icon.gif │ │ │ │ └── images │ │ │ │ │ ├── 1to1property.gif │ │ │ │ │ ├── 1tonproperty.gif │ │ │ │ │ ├── ant_codegen_export.gif │ │ │ │ │ ├── anyproperty.gif │ │ │ │ │ ├── catalog.gif │ │ │ │ │ ├── clear.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ ├── close_disabled.gif │ │ │ │ │ ├── columns.gif │ │ │ │ │ ├── componentproperty.gif │ │ │ │ │ ├── connected.gif │ │ │ │ │ ├── criteria_editor.gif │ │ │ │ │ ├── criteria_editor_connect.gif │ │ │ │ │ ├── database.gif │ │ │ │ │ ├── error.gif │ │ │ │ │ ├── exclamation.gif │ │ │ │ │ ├── execute.gif │ │ │ │ │ ├── format.gif │ │ │ │ │ ├── function.gif │ │ │ │ │ ├── generator.gif │ │ │ │ │ ├── hibernate.gif │ │ │ │ │ ├── hibernate_config.gif │ │ │ │ │ ├── hibernate_icon.jpg │ │ │ │ │ ├── hibernate_launch.png │ │ │ │ │ ├── hibernate_mapping.gif │ │ │ │ │ ├── hibernate_overlay.gif │ │ │ │ │ ├── hibernate_small_icon.jpg │ │ │ │ │ ├── hicon.gif │ │ │ │ │ ├── hicon.jpg │ │ │ │ │ ├── hql_editor.gif │ │ │ │ │ ├── hql_editor_connect.gif │ │ │ │ │ ├── idproperty.gif │ │ │ │ │ ├── ignoreparameter.gif │ │ │ │ │ ├── java.gif │ │ │ │ │ ├── jboss.gif │ │ │ │ │ ├── layout.gif │ │ │ │ │ ├── layout_disabled.gif │ │ │ │ │ ├── mapped_class.gif │ │ │ │ │ ├── mapping.gif │ │ │ │ │ ├── mto1property.gif │ │ │ │ │ ├── mtoaproperty.gif │ │ │ │ │ ├── mtonproperty.gif │ │ │ │ │ ├── new_param.gif │ │ │ │ │ ├── newhibernate_wiz.gif │ │ │ │ │ ├── ovr16 │ │ │ │ │ ├── error_co.gif │ │ │ │ │ ├── obj_ovr_error.gif │ │ │ │ │ ├── obj_ovr_server.gif │ │ │ │ │ ├── obj_ovr_server_off.gif │ │ │ │ │ └── warning_co.gif │ │ │ │ │ ├── parameter.gif │ │ │ │ │ ├── pindown.jpg │ │ │ │ │ ├── pindown.png │ │ │ │ │ ├── pinup.jpg │ │ │ │ │ ├── pinup.png │ │ │ │ │ ├── plus.png │ │ │ │ │ ├── primary_key.gif │ │ │ │ │ ├── property.gif │ │ │ │ │ ├── refresh_run.gif │ │ │ │ │ ├── reload.gif │ │ │ │ │ ├── runextern_no.png │ │ │ │ │ ├── runextern_yes.png │ │ │ │ │ ├── schema.gif │ │ │ │ │ ├── table.gif │ │ │ │ │ ├── treeminus.gif │ │ │ │ │ ├── treeplus.gif │ │ │ │ │ ├── types.gif │ │ │ │ │ ├── unknowntypeproperty.gif │ │ │ │ │ ├── unmapped_class.gif │ │ │ │ │ ├── versionproperty.gif │ │ │ │ │ └── xpl │ │ │ │ │ ├── complete_tsk.gif │ │ │ │ │ ├── incomplete_tsk.gif │ │ │ │ │ ├── removeall.gif │ │ │ │ │ └── removeall_disabled.gif │ │ │ ├── plugin.properties │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ ├── hibernate │ │ │ │ ├── console │ │ │ │ │ ├── AbstractQueryPage.java │ │ │ │ │ ├── ConcoleConfigurationAdapter.java │ │ │ │ │ ├── ConfigurationFactory.java │ │ │ │ │ ├── ConfigurationXMLFactory.java │ │ │ │ │ ├── ConfigurationXMLStrings.java │ │ │ │ │ ├── ConnectionProfileUtil.java │ │ │ │ │ ├── ConsoleConfigClassLoader.java │ │ │ │ │ ├── ConsoleConfiguration.java │ │ │ │ │ ├── ConsoleConfigurationListener.java │ │ │ │ │ ├── ConsoleMessages.java │ │ │ │ │ ├── ConsoleMessages.properties │ │ │ │ │ ├── ConsoleQueryParameter.java │ │ │ │ │ ├── FakeDelegatingDriver.java │ │ │ │ │ ├── HibernateConsoleRuntimeException.java │ │ │ │ │ ├── ImageConstants.java │ │ │ │ │ ├── ImageMap.java │ │ │ │ │ ├── KnownConfigurations.java │ │ │ │ │ ├── KnownConfigurationsAdapter.java │ │ │ │ │ ├── KnownConfigurationsListener.java │ │ │ │ │ ├── QueryInputModel.java │ │ │ │ │ ├── QueryPage.java │ │ │ │ │ ├── QueryPageModel.java │ │ │ │ │ ├── StringListDialog.java │ │ │ │ │ ├── SwingImageMap.java │ │ │ │ │ ├── SwingImages.java │ │ │ │ │ ├── execution │ │ │ │ │ │ ├── DefaultExecutionContext.java │ │ │ │ │ │ ├── ExecutionContext.java │ │ │ │ │ │ └── ExecutionContextHolder.java │ │ │ │ │ ├── node │ │ │ │ │ │ ├── BaseNode.java │ │ │ │ │ │ ├── ClassNode.java │ │ │ │ │ │ ├── ConfigurationEntitiesNode.java │ │ │ │ │ │ ├── ConfigurationListNode.java │ │ │ │ │ │ ├── ConfigurationNode.java │ │ │ │ │ │ ├── IdentifierNode.java │ │ │ │ │ │ ├── NodeFactory.java │ │ │ │ │ │ ├── PersistentCollectionNode.java │ │ │ │ │ │ ├── PropertyNode.java │ │ │ │ │ │ ├── TableNode.java │ │ │ │ │ │ ├── TypeNode.java │ │ │ │ │ │ └── TypedNode.java │ │ │ │ │ └── preferences │ │ │ │ │ │ ├── AbstractConsoleConfigurationPreferences.java │ │ │ │ │ │ ├── ConsoleConfigurationPreferences.java │ │ │ │ │ │ ├── PreferencesClassPathUtils.java │ │ │ │ │ │ └── StandAloneConsoleConfigurationPreferences.java │ │ │ │ ├── eclipse │ │ │ │ │ ├── HibernatePlugin.java │ │ │ │ │ ├── console │ │ │ │ │ │ ├── ExtensionManager.java │ │ │ │ │ │ ├── HibernateConsoleMessages.java │ │ │ │ │ │ ├── HibernateConsoleMessages.properties │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── CollectionPropertySource.java │ │ │ │ │ │ │ ├── CompletionProposal.java │ │ │ │ │ │ │ ├── CompletionProposalsResult.java │ │ │ │ │ │ │ ├── ConsoleExtension.java │ │ │ │ │ │ │ ├── EntityPropertySource.java │ │ │ │ │ │ │ ├── HQLCompletionHandler.java │ │ │ │ │ │ │ ├── HQLQueryPage.java │ │ │ │ │ │ │ ├── HibernateExtension.java │ │ │ │ │ │ │ ├── JavaPage.java │ │ │ │ │ │ │ └── QueryHelper.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ │ ├── ExporterDefinition.java │ │ │ │ │ │ │ │ ├── ExporterFactory.java │ │ │ │ │ │ │ │ ├── ExporterFactoryStrings.java │ │ │ │ │ │ │ │ └── ExporterProperty.java │ │ │ │ │ │ ├── utils │ │ │ │ │ │ │ ├── EclipseImageMap.java │ │ │ │ │ │ │ ├── EclipseImages.java │ │ │ │ │ │ │ ├── Formatter.java │ │ │ │ │ │ │ └── QLFormatHelper.java │ │ │ │ │ │ └── workbench │ │ │ │ │ │ │ └── HibernateWorkbenchHelper.java │ │ │ │ │ ├── launch │ │ │ │ │ │ ├── CodeGenerationStrings.java │ │ │ │ │ │ ├── CodeGenerationUtils.java │ │ │ │ │ │ ├── ExporterAttributes.java │ │ │ │ │ │ ├── HibernateLaunchConstants.java │ │ │ │ │ │ ├── PathHelper.java │ │ │ │ │ │ └── SeamUtil.java │ │ │ │ │ └── logging │ │ │ │ │ │ ├── CurrentContext.java │ │ │ │ │ │ ├── LoggingHelper.java │ │ │ │ │ │ ├── PluginFileAppender.java │ │ │ │ │ │ ├── PluginLogAppender.java │ │ │ │ │ │ ├── PluginLogListener.java │ │ │ │ │ │ ├── PluginLogManager.java │ │ │ │ │ │ ├── PluginLogger.java │ │ │ │ │ │ └── xpl │ │ │ │ │ │ └── EclipseLogger.java │ │ │ │ └── util │ │ │ │ │ └── xpl │ │ │ │ │ ├── DTDEntityResolver.java │ │ │ │ │ ├── ReflectHelper.java │ │ │ │ │ ├── StringHelper.java │ │ │ │ │ └── XMLHelper.java │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ ├── exception │ │ │ │ └── MappingException.java │ │ │ │ └── util │ │ │ │ └── JDBCToHibernateTypeHelper.java │ │ ├── org.jboss.tools.hibernate.jpt.core │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── about.html │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── jpt │ │ │ │ └── core │ │ │ │ └── internal │ │ │ │ ├── HibernateAbstractJpaFactory.java │ │ │ │ ├── HibernateJpaAnnotationDefinitionProvider.java │ │ │ │ ├── HibernateJpaFactory.java │ │ │ │ ├── HibernateJpaPlatform.java │ │ │ │ ├── HibernateJpaPlatformFactory.java │ │ │ │ ├── HibernateJpaPlatformProvider.java │ │ │ │ ├── HibernateJpaProject.java │ │ │ │ ├── HibernateJptPlugin.java │ │ │ │ ├── HibernatePropertiesResourceModel.java │ │ │ │ ├── HibernatePropertiesResourceModelProvider.java │ │ │ │ ├── JPAPostInstallFasetListener.java │ │ │ │ ├── JavaPackageInfoResourceModelProviderPatched.java │ │ │ │ ├── Messages.java │ │ │ │ ├── context │ │ │ │ ├── AddGeneratedClassesJob.java │ │ │ │ ├── CacheModeType.java │ │ │ │ ├── DiscriminatorFormula.java │ │ │ │ ├── FlushModeType.java │ │ │ │ ├── ForeignKey.java │ │ │ │ ├── ForeignKeyHolder.java │ │ │ │ ├── Generated.java │ │ │ │ ├── GenerationTime.java │ │ │ │ ├── GenericGenerator.java │ │ │ │ ├── HibernateColumn.java │ │ │ │ ├── HibernateDiscriminatorColumn.java │ │ │ │ ├── HibernateEntity.java │ │ │ │ ├── HibernateGeneratorContainer.java │ │ │ │ ├── HibernateIdMapping.java │ │ │ │ ├── HibernateJoinColumn.java │ │ │ │ ├── HibernateNamedColumn.java │ │ │ │ ├── HibernateNamedNativeQuery.java │ │ │ │ ├── HibernateNamedQuery.java │ │ │ │ ├── HibernatePersistenceUnit.java │ │ │ │ ├── HibernateQuery.java │ │ │ │ ├── HibernateTable.java │ │ │ │ ├── IndexHolder.java │ │ │ │ ├── Messages.java │ │ │ │ ├── Messages.properties │ │ │ │ ├── NamingStrategyMappingTools.java │ │ │ │ ├── Parameter.java │ │ │ │ ├── ParametrizedElement.java │ │ │ │ ├── TypeConverter.java │ │ │ │ ├── TypeHolder.java │ │ │ │ ├── UIMessages.java │ │ │ │ ├── UIMessages.properties │ │ │ │ ├── basic │ │ │ │ │ ├── BasicHibernateProperties.java │ │ │ │ │ ├── Hibernate.java │ │ │ │ │ └── HibernatePersistenceUnitProperties.java │ │ │ │ ├── definition │ │ │ │ │ ├── HibernateJavaBasicMappingDefinition.java │ │ │ │ │ ├── HibernateJavaEntityDefinition.java │ │ │ │ │ ├── HibernateJavaIdMappingDefinition.java │ │ │ │ │ ├── HibernateJavaManyToManyMappingDefinition.java │ │ │ │ │ ├── HibernateJavaManyToOneMappingDefinition.java │ │ │ │ │ ├── HibernateJavaOneToManyMappingDefinition.java │ │ │ │ │ └── HibernateJavaOneToOneMappingDefinition.java │ │ │ │ ├── java │ │ │ │ │ ├── AbstractHibernateNamedQueryImpl.java │ │ │ │ │ ├── ForeignKeyAnnotation.java │ │ │ │ │ ├── ForeignKeyImpl.java │ │ │ │ │ ├── HibernateGenericGeneratorContainer.java │ │ │ │ │ ├── HibernateJavaBasicMapping.java │ │ │ │ │ ├── HibernateJavaBasicMappingImpl.java │ │ │ │ │ ├── HibernateJavaColumn.java │ │ │ │ │ ├── HibernateJavaColumnImpl.java │ │ │ │ │ ├── HibernateJavaDiscriminatorColumn.java │ │ │ │ │ ├── HibernateJavaDiscriminatorColumnImpl.java │ │ │ │ │ ├── HibernateJavaEmbeddable.java │ │ │ │ │ ├── HibernateJavaEntity.java │ │ │ │ │ ├── HibernateJavaEntityImpl.java │ │ │ │ │ ├── HibernateJavaGeneratorContainerImpl.java │ │ │ │ │ ├── HibernateJavaIdMapping.java │ │ │ │ │ ├── HibernateJavaIdMappingImpl.java │ │ │ │ │ ├── HibernateJavaJoinColumn.java │ │ │ │ │ ├── HibernateJavaJoinColumnImpl.java │ │ │ │ │ ├── HibernateJavaJoinColumnJoiningStrategy.java │ │ │ │ │ ├── HibernateJavaJoinColumnRelationshipStrategy.java │ │ │ │ │ ├── HibernateJavaJoinTable.java │ │ │ │ │ ├── HibernateJavaJoinTableImpl.java │ │ │ │ │ ├── HibernateJavaJoinTableJoiningStrategy.java │ │ │ │ │ ├── HibernateJavaJoinTableRelationshipStrategy.java │ │ │ │ │ ├── HibernateJavaManyToManyMapping.java │ │ │ │ │ ├── HibernateJavaManyToManyRelationship.java │ │ │ │ │ ├── HibernateJavaManyToManyRelationshipReference.java │ │ │ │ │ ├── HibernateJavaManyToOneMapping.java │ │ │ │ │ ├── HibernateJavaManyToOneRelationship.java │ │ │ │ │ ├── HibernateJavaManyToOneRelationshipReference.java │ │ │ │ │ ├── HibernateJavaNamedNativeQuery.java │ │ │ │ │ ├── HibernateJavaNamedQuery.java │ │ │ │ │ ├── HibernateJavaOneToManyMapping.java │ │ │ │ │ ├── HibernateJavaOneToManyRelationship.java │ │ │ │ │ ├── HibernateJavaOneToManyRelationshipReference.java │ │ │ │ │ ├── HibernateJavaOneToOneMapping.java │ │ │ │ │ ├── HibernateJavaOneToOneRelationship.java │ │ │ │ │ ├── HibernateJavaOneToOneRelationshipReference.java │ │ │ │ │ ├── HibernateJavaParameter.java │ │ │ │ │ ├── HibernateJavaQuery.java │ │ │ │ │ ├── HibernateJavaQueryContainer.java │ │ │ │ │ ├── HibernateJavaQueryContainerImpl.java │ │ │ │ │ ├── HibernateJavaSecondaryTable.java │ │ │ │ │ ├── HibernateJavaSecondaryTableImpl.java │ │ │ │ │ ├── HibernateJavaTable.java │ │ │ │ │ ├── HibernateJavaTableImpl.java │ │ │ │ │ ├── HibernateJavaTypeDefContainer.java │ │ │ │ │ ├── HibernateJavaTypeDefContainerImpl.java │ │ │ │ │ ├── HibernateNamedNativeQueryImpl.java │ │ │ │ │ ├── HibernateNamedQueryImpl.java │ │ │ │ │ ├── HibernatePackageInfo.java │ │ │ │ │ ├── HibernatePackageInfoImpl.java │ │ │ │ │ ├── IndexImpl.java │ │ │ │ │ ├── JavaDbGenericGenerator.java │ │ │ │ │ ├── JavaDbGenericGeneratorImpl.java │ │ │ │ │ ├── JavaDiscriminatorFormula.java │ │ │ │ │ ├── JavaDiscriminatorFormulaImpl.java │ │ │ │ │ ├── JavaIndex.java │ │ │ │ │ ├── JavaPackageInfo.java │ │ │ │ │ ├── JavaParameter.java │ │ │ │ │ ├── JavaType.java │ │ │ │ │ ├── JavaTypeConverter.java │ │ │ │ │ ├── JavaTypeConverterImpl.java │ │ │ │ │ ├── JavaTypeDef.java │ │ │ │ │ ├── JavaTypeDefImpl.java │ │ │ │ │ ├── JpaUtil.java │ │ │ │ │ ├── TypeImpl.java │ │ │ │ │ └── jpa2 │ │ │ │ │ │ └── HibernateJavaElementCollectionMapping2_0.java │ │ │ │ ├── orm │ │ │ │ │ ├── HibernateOrmBasicMapping.java │ │ │ │ │ ├── HibernateOrmColumn.java │ │ │ │ │ ├── HibernateOrmColumnImpl.java │ │ │ │ │ ├── HibernateOrmEntity.java │ │ │ │ │ ├── HibernateOrmEntityImpl.java │ │ │ │ │ ├── HibernateOrmIdMapping.java │ │ │ │ │ ├── HibernateOrmIdMappingImpl.java │ │ │ │ │ ├── HibernateOrmJoinColumn.java │ │ │ │ │ ├── HibernateOrmJoinColumnImpl.java │ │ │ │ │ ├── HibernateOrmJoinColumnJoiningStrategy.java │ │ │ │ │ ├── HibernateOrmJoinTable.java │ │ │ │ │ ├── HibernateOrmJoinTableImpl.java │ │ │ │ │ ├── HibernateOrmJoinTableJoiningStrategy.java │ │ │ │ │ ├── HibernateOrmManyToManyMapping.java │ │ │ │ │ ├── HibernateOrmManyToManyRelationshipReference.java │ │ │ │ │ ├── HibernateOrmManyToOneMapping.java │ │ │ │ │ ├── HibernateOrmManyToOneRelationshipReference.java │ │ │ │ │ ├── HibernateOrmOneToManyMapping.java │ │ │ │ │ ├── HibernateOrmOneToManyRelationshipReference.java │ │ │ │ │ ├── HibernateOrmOneToOneMapping.java │ │ │ │ │ ├── HibernateOrmOneToOneRelationshipReference.java │ │ │ │ │ ├── HibernateOrmPersistentType.java │ │ │ │ │ ├── HibernateOrmTable.java │ │ │ │ │ ├── HibernateOrmTableImpl.java │ │ │ │ │ ├── HibernateOrmXmlContextNodeFactory.java │ │ │ │ │ ├── HibernateOrmXmlDefinition.java │ │ │ │ │ └── jpa2 │ │ │ │ │ │ ├── HibernateOrmXml2_0ContextNodeFactory.java │ │ │ │ │ │ ├── HibernateOrmXml2_0Definition.java │ │ │ │ │ │ ├── HibernateOrmXml2_1Definition.java │ │ │ │ │ │ └── HibernateOrmXml2_2Definition.java │ │ │ │ └── persistence │ │ │ │ │ ├── HibernateClassRef.java │ │ │ │ │ ├── HibernatePersistence.java │ │ │ │ │ ├── HibernatePersistenceUnitPropertiesBuilder.java │ │ │ │ │ ├── HibernatePersistenceXmlContextNodeFactory.java │ │ │ │ │ ├── HibernatePersistenceXmlDefinition.java │ │ │ │ │ ├── JPA2_1.java │ │ │ │ │ ├── JPA2_2.java │ │ │ │ │ ├── PackageInfoRef.java │ │ │ │ │ └── jpa2 │ │ │ │ │ ├── Hibernate2_0PersistenceXmlContextNodeFactory.java │ │ │ │ │ ├── Hibernate2_0PersistenceXmlDefinition.java │ │ │ │ │ ├── Hibernate2_1PersistenceXmlContextNodeFactory.java │ │ │ │ │ ├── Hibernate2_1PersistenceXmlDefinition.java │ │ │ │ │ ├── Hibernate2_2PersistenceXmlContextNodeFactory.java │ │ │ │ │ └── Hibernate2_2PersistenceXmlDefinition.java │ │ │ │ ├── jpa2 │ │ │ │ ├── HibernateJpa2_0AnnotationDefinitionProvider.java │ │ │ │ ├── HibernateJpa2_0PlatformFactory.java │ │ │ │ ├── HibernateJpa2_0PlatformProvider.java │ │ │ │ ├── HibernateJpaFactory2_0.java │ │ │ │ └── context │ │ │ │ │ └── definition │ │ │ │ │ ├── HibernateJavaIdMappingDefinition2_0.java │ │ │ │ │ ├── HibernateJavaManyToManyMappingDefinition2_0.java │ │ │ │ │ ├── HibernateJavaManyToOneMappingDefinition2_0.java │ │ │ │ │ └── HibernateJavaOneToOneMappingDefinition2_0.java │ │ │ │ ├── jpa2_1 │ │ │ │ ├── HibernateJpa2_1PlatformFactory.java │ │ │ │ └── HibernateJpa2_1PlatformProvider.java │ │ │ │ ├── jpa2_2 │ │ │ │ ├── HibernateJpa2_2PlatformFactory.java │ │ │ │ └── HibernateJpa2_2PlatformProvider.java │ │ │ │ ├── libval │ │ │ │ └── HibernateUserLibraryValidator.java │ │ │ │ ├── messages.properties │ │ │ │ ├── resource │ │ │ │ └── java │ │ │ │ │ ├── DiscriminatorFormulaAnnotation.java │ │ │ │ │ ├── DiscriminatorFormulaAnnotationImpl.java │ │ │ │ │ ├── ForeignKeyAnnotationImpl.java │ │ │ │ │ ├── GeneratedAnnotation.java │ │ │ │ │ ├── GeneratedAnnotationImpl.java │ │ │ │ │ ├── GenericGeneratorAnnotation.java │ │ │ │ │ ├── GenericGeneratorAnnotationDefinition.java │ │ │ │ │ ├── GenericGeneratorAnnotationImpl.java │ │ │ │ │ ├── GenericGeneratorsAnnotationDefinition.java │ │ │ │ │ ├── HibernateNamedNativeQueriesAnnotationDefinition.java │ │ │ │ │ ├── HibernateNamedNativeQueryAnnotation.java │ │ │ │ │ ├── HibernateNamedNativeQueryAnnotationDefinition.java │ │ │ │ │ ├── HibernateNamedQueriesAnnotationDefinition.java │ │ │ │ │ ├── HibernateNamedQueryAnnotation.java │ │ │ │ │ ├── HibernateNamedQueryAnnotationDefinition.java │ │ │ │ │ ├── HibernateQueryAnnotation.java │ │ │ │ │ ├── HibernateSourceNamedNativeQueryAnnotation.java │ │ │ │ │ ├── HibernateSourceNamedQueryAnnotation.java │ │ │ │ │ ├── IndexAnnotation.java │ │ │ │ │ ├── IndexAnnotationImpl.java │ │ │ │ │ ├── ParameterAnnotation.java │ │ │ │ │ ├── SourceParameterAnnotation.java │ │ │ │ │ ├── TypeAnnotation.java │ │ │ │ │ ├── TypeAnnotationImpl.java │ │ │ │ │ ├── TypeDefAnnotation.java │ │ │ │ │ ├── TypeDefAnnotationDefinition.java │ │ │ │ │ ├── TypeDefAnnotationImpl.java │ │ │ │ │ └── TypeDefsAnnotationDefinition.java │ │ │ │ └── validation │ │ │ │ └── HibernateJpaValidationMessage.java │ │ ├── org.jboss.tools.hibernate.jpt.ui │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── about.html │ │ │ ├── build.properties │ │ │ ├── icons │ │ │ │ └── warning.gif │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── jpt │ │ │ │ └── ui │ │ │ │ ├── HibernateJptUIPlugin.java │ │ │ │ ├── internal │ │ │ │ ├── HibernateJpa2_0PlatformUiProvider.java │ │ │ │ ├── HibernateJpa2_1PlatformUiProvider.java │ │ │ │ ├── HibernateJpa2_2PlatformUiProvider.java │ │ │ │ ├── HibernateJpaPlatformUiProvider.java │ │ │ │ ├── details │ │ │ │ │ ├── HibernateTableComposite.java │ │ │ │ │ ├── Messages.java │ │ │ │ │ ├── PackageInfoDetailsPage.java │ │ │ │ │ ├── java │ │ │ │ │ │ ├── HibernateJavaEntityComposite.java │ │ │ │ │ │ ├── HibernateJavaInheritanceComposite.java │ │ │ │ │ │ └── JavaPackageInfoDetailsProvider.java │ │ │ │ │ ├── messages.properties │ │ │ │ │ └── orm │ │ │ │ │ │ ├── HibernateOrmEntityComposite.java │ │ │ │ │ │ └── HibernateOrmIdMappingComposite.java │ │ │ │ ├── importer │ │ │ │ │ └── JPAProjectConfigurator.java │ │ │ │ ├── jpa2 │ │ │ │ │ ├── details │ │ │ │ │ │ ├── HibernateElementCollectionMapping2_0Composite.java │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ ├── HibernateJavaEntity2_0Composite.java │ │ │ │ │ │ │ └── HibernateQueries2_0Composite.java │ │ │ │ │ │ └── orm │ │ │ │ │ │ │ ├── Hibernate2_0OrmEntityComposite.java │ │ │ │ │ │ │ └── Hibernate2_0OrmIdMappingComposite.java │ │ │ │ │ └── mapping │ │ │ │ │ │ └── details │ │ │ │ │ │ └── orm │ │ │ │ │ │ ├── Hibernate2_0OrmXmlUiDefinition.java │ │ │ │ │ │ ├── Hibernate2_0OrmXmlUiFactory.java │ │ │ │ │ │ ├── Hibernate2_1OrmXmlUiDefinition.java │ │ │ │ │ │ └── Hibernate2_2OrmXmlUiDefinition.java │ │ │ │ ├── mapping │ │ │ │ │ └── details │ │ │ │ │ │ ├── GeneratedComposite.java │ │ │ │ │ │ ├── GenericGeneratorComposite.java │ │ │ │ │ │ ├── GenericGeneratorsComposite.java │ │ │ │ │ │ ├── HibernateAbstractInheritanceComposite.java │ │ │ │ │ │ ├── HibernateAddQueryDialog.java │ │ │ │ │ │ ├── HibernateBasicMappingComposite.java │ │ │ │ │ │ ├── HibernateColumnComposite.java │ │ │ │ │ │ ├── HibernateDiscriminatorColumnComposite.java │ │ │ │ │ │ ├── HibernateGenerationComposite.java │ │ │ │ │ │ ├── HibernateIdMappingComposite.java │ │ │ │ │ │ ├── HibernateNamedNativeQueryPropertyComposite.java │ │ │ │ │ │ ├── HibernateNamedQueryPropertyComposite.java │ │ │ │ │ │ ├── HibernateQueriesComposite.java │ │ │ │ │ │ ├── HibernateQueryPropertyComposite.java │ │ │ │ │ │ ├── HibernateUIMappingMessages.java │ │ │ │ │ │ ├── IndexHolderComposite.java │ │ │ │ │ │ ├── ParametersComposite.java │ │ │ │ │ │ ├── TypeComposite.java │ │ │ │ │ │ ├── TypeDefPropertyComposite.java │ │ │ │ │ │ ├── TypeDefsComposite.java │ │ │ │ │ │ ├── java │ │ │ │ │ │ ├── Hibernate2_0JavaResourceUiDefinition.java │ │ │ │ │ │ ├── Hibernate2_0JavaUiFactory.java │ │ │ │ │ │ ├── HibernateJavaResourceUiDefinition.java │ │ │ │ │ │ ├── HibernateJavaUiFactory.java │ │ │ │ │ │ └── PackageInfoResourceUIDefinition.java │ │ │ │ │ │ ├── messages.properties │ │ │ │ │ │ └── orm │ │ │ │ │ │ ├── HibernateOrmXmlUiDefinition.java │ │ │ │ │ │ └── HibernateOrmXmlUiFactory.java │ │ │ │ ├── mappings │ │ │ │ │ └── db │ │ │ │ │ │ └── xpl │ │ │ │ │ │ ├── ColumnCombo.java │ │ │ │ │ │ ├── DatabaseObjectCombo.java │ │ │ │ │ │ └── TableCombo.java │ │ │ │ ├── persistence │ │ │ │ │ └── details │ │ │ │ │ │ ├── AddMappingListPane.java │ │ │ │ │ │ ├── HibernatePersistenceUnitClassesComposite.java │ │ │ │ │ │ ├── HibernatePersistenceUnitGeneralEditorPage.java │ │ │ │ │ │ ├── HibernatePersistenceUnitGeneralEditorPageDefinition.java │ │ │ │ │ │ ├── HibernatePersistenceXmlUiDefinition.java │ │ │ │ │ │ ├── HibernatePersistenceXmlUiFactory.java │ │ │ │ │ │ ├── HibernatePropertiesComposite.java │ │ │ │ │ │ ├── HibernatePropertiesPage.java │ │ │ │ │ │ ├── HibernatePropertiesPageDefinition.java │ │ │ │ │ │ ├── Messages.java │ │ │ │ │ │ ├── jpa2 │ │ │ │ │ │ ├── HibernatePersistenceXml2_0UiDefinition.java │ │ │ │ │ │ ├── HibernatePersistenceXml2_0UiFactory.java │ │ │ │ │ │ ├── HibernatePersistenceXml2_1UiDefinition.java │ │ │ │ │ │ └── HibernatePersistenceXml2_2UiDefinition.java │ │ │ │ │ │ └── messages.properties │ │ │ │ ├── platform │ │ │ │ │ ├── HibernateJpa2_0PlatformUiFactory.java │ │ │ │ │ ├── HibernateJpa2_1PlatformUiFactory.java │ │ │ │ │ ├── HibernateJpa2_2PlatformUiFactory.java │ │ │ │ │ ├── HibernateJpaPlatformUi.java │ │ │ │ │ └── HibernateJpaPlatformUiFactory.java │ │ │ │ ├── utils │ │ │ │ │ ├── PaneVisibilityEnabler.java │ │ │ │ │ └── StateController.java │ │ │ │ └── widgets │ │ │ │ │ ├── EnterNameDialog.java │ │ │ │ │ └── NameStateObject.java │ │ │ │ └── wizard │ │ │ │ ├── GenerateDdlWizard.java │ │ │ │ ├── GenerateDdlWizardPage.java │ │ │ │ ├── GenerateEntitiesWizard.java │ │ │ │ ├── GenerateEntitiesWizardPage.java │ │ │ │ ├── GenerateInitWizardPage.java │ │ │ │ ├── Messages.java │ │ │ │ └── messages.properties │ │ ├── org.jboss.tools.hibernate.ui │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── about.html │ │ │ ├── build.properties │ │ │ ├── icons │ │ │ │ ├── hibernate_small_icon.gif │ │ │ │ ├── java.gif │ │ │ │ └── mapping.gif │ │ │ ├── images │ │ │ │ ├── any.gif │ │ │ │ ├── collection.gif │ │ │ │ ├── collection_array.gif │ │ │ │ ├── collection_bag.gif │ │ │ │ ├── collection_idbag.gif │ │ │ │ ├── collection_list.gif │ │ │ │ ├── collection_map.gif │ │ │ │ ├── collection_primitive_array.gif │ │ │ │ ├── collection_set.gif │ │ │ │ ├── component.gif │ │ │ │ ├── component_id.gif │ │ │ │ ├── delete_edit.gif │ │ │ │ ├── error_st_obj.gif │ │ │ │ ├── error_tsk.gif │ │ │ │ ├── error_view.gif │ │ │ │ ├── exdDataPerspective.gif │ │ │ │ ├── exdDataPerspective1.gif │ │ │ │ ├── exdDatabaseColumn.gif │ │ │ │ ├── exdDatabaseColumn1.gif │ │ │ │ ├── exdDatabaseConstrain1.gif │ │ │ │ ├── exdDatabaseDiscriminatorColumn.gif │ │ │ │ ├── exdDatabaseForeignKeyColumn.gif │ │ │ │ ├── exdDatabasePrimaryForeignKeysColumn.gif │ │ │ │ ├── exdDatabasePrimaryKeyColumn.gif │ │ │ │ ├── exdDatabaseSchema.gif │ │ │ │ ├── exdDatabaseSchema1.gif │ │ │ │ ├── exdDatabaseTable.gif │ │ │ │ ├── exdDatabaseTable1.gif │ │ │ │ ├── exdDatabaseVersionColumn.gif │ │ │ │ ├── exdDatabaseView.gif │ │ │ │ ├── exdDialogAction1.gif │ │ │ │ ├── exdMapping.gif │ │ │ │ ├── exdMapping1.gif │ │ │ │ ├── exdMappingStorage.gif │ │ │ │ ├── exdMappingStorage1.gif │ │ │ │ ├── exdMapping_new.gif │ │ │ │ ├── exdOrm16x16.gif │ │ │ │ ├── exdOrmModel.gif │ │ │ │ ├── exdOrmModel1.gif │ │ │ │ ├── exdPackage.gif │ │ │ │ ├── exdPackage1.gif │ │ │ │ ├── exdPersistentClass.gif │ │ │ │ ├── exdPersistentClass1.gif │ │ │ │ ├── exdPersistentClassMapping.gif │ │ │ │ ├── exdPersistentClassMapping1.gif │ │ │ │ ├── exdPersistentField.gif │ │ │ │ ├── exdPersistentField1.gif │ │ │ │ ├── exdPersistentFieldMapping1.gif │ │ │ │ ├── exdPersistentJoinedSubclassMapping.gif │ │ │ │ ├── exdPersistentRootClassMapping.gif │ │ │ │ ├── exdPersistentRootClassMappingC.gif │ │ │ │ ├── exdPersistentSubclassMapping.gif │ │ │ │ ├── exdPersistentUnionSubclassMapping.gif │ │ │ │ ├── exdPersistentValueMapping1.gif │ │ │ │ ├── exdProperties.gif │ │ │ │ ├── exdWizardAction1.gif │ │ │ │ ├── file_obj.gif │ │ │ │ ├── fldr_obj.gif │ │ │ │ ├── hibernate_small_icon.gif │ │ │ │ ├── hql.gif │ │ │ │ ├── install_16.gif │ │ │ │ ├── install_32.gif │ │ │ │ ├── jar_obj.gif │ │ │ │ ├── many-to-any.gif │ │ │ │ ├── many-to-many.gif │ │ │ │ ├── many-to-one.gif │ │ │ │ ├── many-to-one_id.gif │ │ │ │ ├── not_mapped.gif │ │ │ │ ├── object.gif │ │ │ │ ├── object_none.gif │ │ │ │ ├── one-to-many.gif │ │ │ │ ├── one-to-one.gif │ │ │ │ ├── one-to-one_id.gif │ │ │ │ ├── orm16x16.gif │ │ │ │ ├── orm32x32.gif │ │ │ │ ├── parent.gif │ │ │ │ ├── property.gif │ │ │ │ ├── refresh_orm_gef.gif │ │ │ │ ├── shevron_down.gif │ │ │ │ ├── shevron_up.gif │ │ │ │ ├── simple.gif │ │ │ │ ├── simple_id.gif │ │ │ │ ├── simple_version.gif │ │ │ │ ├── uninstall_16.gif │ │ │ │ ├── uninstall_32.gif │ │ │ │ ├── unique_key.gif │ │ │ │ ├── unknown.gif │ │ │ │ ├── warning_vew.gif │ │ │ │ └── wiz_icon.gif │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── ui │ │ │ │ ├── diagram │ │ │ │ ├── DiagramViewerMessages.java │ │ │ │ ├── DiagramViewerMessages.properties │ │ │ │ ├── UiPlugin.java │ │ │ │ ├── editors │ │ │ │ │ ├── DiagramActionBarContributor.java │ │ │ │ │ ├── DiagramContentOutlinePage.java │ │ │ │ │ ├── DiagramViewer.java │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── ActionMenu.java │ │ │ │ │ │ ├── AutoLayoutAction.java │ │ │ │ │ │ ├── CollapseAllAction.java │ │ │ │ │ │ ├── ConnectionRouterFanAction.java │ │ │ │ │ │ ├── ConnectionRouterManhattanAction.java │ │ │ │ │ │ ├── DiagramBaseAction.java │ │ │ │ │ │ ├── DiagramBaseRetargetAction.java │ │ │ │ │ │ ├── ExpandAllAction.java │ │ │ │ │ │ ├── ExportImageAction.java │ │ │ │ │ │ ├── LexicalSortingAction.java │ │ │ │ │ │ ├── OpenMappingAction.java │ │ │ │ │ │ ├── OpenSourceAction.java │ │ │ │ │ │ ├── PrintDiagramViewerAction.java │ │ │ │ │ │ ├── PrintPageSetupDiagramViewerAction.java │ │ │ │ │ │ ├── RefreshAction.java │ │ │ │ │ │ ├── ShapeCollapseAction.java │ │ │ │ │ │ ├── ShapeExpandAction.java │ │ │ │ │ │ ├── ShapeHideAction.java │ │ │ │ │ │ ├── ShapeShowAction.java │ │ │ │ │ │ ├── ToggleAssociationAction.java │ │ │ │ │ │ ├── ToggleClassMappingAction.java │ │ │ │ │ │ ├── ToggleConnectionsAction.java │ │ │ │ │ │ ├── ToggleForeignKeyConstraintAction.java │ │ │ │ │ │ ├── TogglePropertyMappingAction.java │ │ │ │ │ │ ├── ToggleShapeExpandStateAction.java │ │ │ │ │ │ └── ToggleShapeVisibleStateAction.java │ │ │ │ │ ├── autolayout │ │ │ │ │ │ ├── IDiagramInfo.java │ │ │ │ │ │ ├── IItemInfo.java │ │ │ │ │ │ ├── ILinkInfo.java │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── DiagramElementInfo.java │ │ │ │ │ │ │ ├── DiagramInfo.java │ │ │ │ │ │ │ └── LinkInfo.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── AutoLayoutImpl.java │ │ │ │ │ │ │ ├── Group.java │ │ │ │ │ │ │ ├── GroupArranger.java │ │ │ │ │ │ │ ├── Groups.java │ │ │ │ │ │ │ ├── Item.java │ │ │ │ │ │ │ ├── Items.java │ │ │ │ │ │ │ ├── LayoutConstants.java │ │ │ │ │ │ │ └── TransitionArranger.java │ │ │ │ │ ├── command │ │ │ │ │ │ ├── AutoLayoutCommand.java │ │ │ │ │ │ ├── ChangeGuideCommand.java │ │ │ │ │ │ ├── CollapseAllCommand.java │ │ │ │ │ │ ├── CreateGuideCommand.java │ │ │ │ │ │ ├── DeleteGuideCommand.java │ │ │ │ │ │ ├── ExpandAllCommand.java │ │ │ │ │ │ ├── MoveGuideCommand.java │ │ │ │ │ │ ├── ShapeSetConstraintCommand.java │ │ │ │ │ │ ├── ToggleAssociationCommand.java │ │ │ │ │ │ ├── ToggleClassMappingCommand.java │ │ │ │ │ │ ├── ToggleConnectionRouterFanCommand.java │ │ │ │ │ │ ├── ToggleConnectionRouterManhattanCommand.java │ │ │ │ │ │ ├── ToggleConnectionsCommand.java │ │ │ │ │ │ ├── ToggleForeignKeyConstraintCommand.java │ │ │ │ │ │ ├── TogglePropertyMappingCommand.java │ │ │ │ │ │ ├── ToggleShapeExpandStateCommand.java │ │ │ │ │ │ └── ToggleShapeVisibleStateCommand.java │ │ │ │ │ ├── figures │ │ │ │ │ │ ├── ComponentFigure.java │ │ │ │ │ │ ├── RoundLineBorder.java │ │ │ │ │ │ ├── RoundPolylineConnection.java │ │ │ │ │ │ ├── TitleFigure.java │ │ │ │ │ │ ├── TitleLabel.java │ │ │ │ │ │ └── TopLineBorder.java │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── autolayout.png │ │ │ │ │ │ ├── export.png │ │ │ │ │ │ ├── fanConnectionRouter.png │ │ │ │ │ │ ├── manhattanConnectionRouter.png │ │ │ │ │ │ ├── outline.gif │ │ │ │ │ │ ├── overview.gif │ │ │ │ │ │ ├── shapecollapse.png │ │ │ │ │ │ ├── shapeexpand.png │ │ │ │ │ │ ├── shapehide.png │ │ │ │ │ │ ├── shapeshow.png │ │ │ │ │ │ ├── toggleassociation.png │ │ │ │ │ │ ├── toggleclassmapping.png │ │ │ │ │ │ ├── toggleconnections.png │ │ │ │ │ │ ├── toggleforeignkeyconstraint.png │ │ │ │ │ │ ├── togglepropertymapping.png │ │ │ │ │ │ ├── toggleshapeexpandstate.png │ │ │ │ │ │ ├── toggleshapeexpandstate2.png │ │ │ │ │ │ └── toggleshapevisiblestate.png │ │ │ │ │ ├── model │ │ │ │ │ │ ├── BaseElement.java │ │ │ │ │ │ ├── ComponentShape.java │ │ │ │ │ │ ├── Connection.java │ │ │ │ │ │ ├── ElementsFactory.java │ │ │ │ │ │ ├── ExpandableShape.java │ │ │ │ │ │ ├── MessageShape.java │ │ │ │ │ │ ├── OrmDiagram.java │ │ │ │ │ │ ├── OrmShape.java │ │ │ │ │ │ ├── Shape.java │ │ │ │ │ │ ├── SpecialOrmShape.java │ │ │ │ │ │ ├── UtilTypeExtract.java │ │ │ │ │ │ └── Utils.java │ │ │ │ │ ├── parts │ │ │ │ │ │ ├── ColorConstants.java │ │ │ │ │ │ ├── ColorConstants.properties │ │ │ │ │ │ ├── ComponentShapeEditPart.java │ │ │ │ │ │ ├── ConnectionEditPart.java │ │ │ │ │ │ ├── DiagramEditPart.java │ │ │ │ │ │ ├── DiagramTreeEditPart.java │ │ │ │ │ │ ├── ExpandableShapeEditPart.java │ │ │ │ │ │ ├── ExpandableShapeTreeEditPart.java │ │ │ │ │ │ ├── GEFRootEditPart.java │ │ │ │ │ │ ├── OrmEditPart.java │ │ │ │ │ │ ├── OrmEditPartFactory.java │ │ │ │ │ │ ├── OrmShapeEditPart.java │ │ │ │ │ │ ├── ResourceManager.java │ │ │ │ │ │ ├── ShapeEditPart.java │ │ │ │ │ │ ├── ShapeTreeEditPart.java │ │ │ │ │ │ ├── ShapesXYLayoutEditPolicy.java │ │ │ │ │ │ └── TreePartFactory.java │ │ │ │ │ ├── popup │ │ │ │ │ │ └── PopupMenuProvider.java │ │ │ │ │ └── print │ │ │ │ │ │ ├── PageSetupDialog.java │ │ │ │ │ │ └── PrintPreviewHelper.java │ │ │ │ ├── print │ │ │ │ │ └── PrintDiagramViewerOperation.java │ │ │ │ └── rulers │ │ │ │ │ ├── DiagramGuide.java │ │ │ │ │ ├── DiagramRuler.java │ │ │ │ │ └── DiagramRulerProvider.java │ │ │ │ └── view │ │ │ │ ├── DiagramEditorInput.java │ │ │ │ ├── DiagramEditorInputFactory.java │ │ │ │ ├── DiagramEditorStorage.java │ │ │ │ ├── HibernateUtils.java │ │ │ │ ├── ImageBundle.java │ │ │ │ ├── OpenDiagramActionDelegate.java │ │ │ │ ├── OrmImageMap.java │ │ │ │ ├── OrmLabelMap.java │ │ │ │ ├── OrmLabelProvider.java │ │ │ │ ├── UIViewMessages.java │ │ │ │ ├── UIViewMessages.properties │ │ │ │ └── image.properties │ │ ├── org.jboss.tools.hibernate.xml.ui │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── about.html │ │ │ ├── build.properties │ │ │ ├── images │ │ │ │ └── xstudio │ │ │ │ │ └── editors │ │ │ │ │ └── hibernate_file.gif │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── ui │ │ │ │ └── xml │ │ │ │ ├── HibernateUIXMLPlugin.java │ │ │ │ ├── Messages.java │ │ │ │ ├── editor │ │ │ │ ├── HibConfig3CompoundEditor.java │ │ │ │ ├── Hibernate3CompoundEditor.java │ │ │ │ ├── HibernatePropertiesContentAssistProcessor.java │ │ │ │ ├── HibernatePropertiesContentProposalProvider.java │ │ │ │ └── PropertyListAdapter.java │ │ │ │ ├── form │ │ │ │ ├── HibConfig3CacheFormLayoutData.java │ │ │ │ ├── HibConfig3EventFormLayoutData.java │ │ │ │ ├── HibConfig3FileFormLayoutData.java │ │ │ │ ├── HibConfig3MappingFormLayoutData.java │ │ │ │ ├── HibConfig3PropertyFormLayoutData.java │ │ │ │ ├── HibConfig3SessionFormLayoutData.java │ │ │ │ ├── Hibernate3AnyFormLayoutData.java │ │ │ │ ├── Hibernate3ClassFormLayoutData.java │ │ │ │ ├── Hibernate3ColumnFormLayoutData.java │ │ │ │ ├── Hibernate3ComponentFormLayoutData.java │ │ │ │ ├── Hibernate3CompositeElementFormLayoutData.java │ │ │ │ ├── Hibernate3DatabaseObjectFormLayoutData.java │ │ │ │ ├── Hibernate3ElementFormLayoutData.java │ │ │ │ ├── Hibernate3FileFormLayoutData.java │ │ │ │ ├── Hibernate3FilterFormLayoutData.java │ │ │ │ ├── Hibernate3FormLayoutData.java │ │ │ │ ├── Hibernate3FormLayoutDataUtil.java │ │ │ │ ├── Hibernate3FormulaFormLayoutData.java │ │ │ │ ├── Hibernate3IdFormLayoutData.java │ │ │ │ ├── Hibernate3KeyFormLayoutData.java │ │ │ │ ├── Hibernate3ListFormLayoutData.java │ │ │ │ ├── Hibernate3ManyToOneFormLayoutData.java │ │ │ │ ├── Hibernate3MapFormLayoutData.java │ │ │ │ ├── Hibernate3MetaFormLayoutData.java │ │ │ │ ├── Hibernate3OneToOneFormLayoutData.java │ │ │ │ ├── Hibernate3PropertyFormLayoutData.java │ │ │ │ ├── Hibernate3SQLQueryFormLayoutData.java │ │ │ │ ├── Hibernate3SetFormLayoutData.java │ │ │ │ ├── Messages.java │ │ │ │ └── messages.properties │ │ │ │ └── messages.properties │ │ ├── org.jboss.tools.hibernate.xml │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── about.html │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ ├── resources │ │ │ │ ├── help │ │ │ │ │ ├── keys-hibernate-attrs.properties │ │ │ │ │ ├── keys-hibernate-config.properties │ │ │ │ │ ├── keys-hibernate-lists.properties │ │ │ │ │ ├── keys-hibernate-menu.properties │ │ │ │ │ └── keys-hibernate3.properties │ │ │ │ ├── images │ │ │ │ │ ├── orm2 │ │ │ │ │ │ ├── class.gif │ │ │ │ │ │ ├── collection.gif │ │ │ │ │ │ ├── collection_small.gif │ │ │ │ │ │ ├── column.gif │ │ │ │ │ │ ├── comment.gif │ │ │ │ │ │ ├── component.gif │ │ │ │ │ │ ├── composite_id.gif │ │ │ │ │ │ ├── connection.gif │ │ │ │ │ │ ├── discriminator.gif │ │ │ │ │ │ ├── dynacomponent.gif │ │ │ │ │ │ ├── empty.gif │ │ │ │ │ │ ├── field.gif │ │ │ │ │ │ ├── field_key.gif │ │ │ │ │ │ ├── file.gif │ │ │ │ │ │ ├── filled.gif │ │ │ │ │ │ ├── filter.gif │ │ │ │ │ │ ├── id.gif │ │ │ │ │ │ ├── index-manytoany.gif │ │ │ │ │ │ ├── index-manytomany.gif │ │ │ │ │ │ ├── index.gif │ │ │ │ │ │ ├── key-manytoone.gif │ │ │ │ │ │ ├── key-property.gif │ │ │ │ │ │ ├── manytoany.gif │ │ │ │ │ │ ├── manytomany.gif │ │ │ │ │ │ ├── manytoone.gif │ │ │ │ │ │ ├── onetomany.gif │ │ │ │ │ │ ├── onetoone.gif │ │ │ │ │ │ ├── parameter.gif │ │ │ │ │ │ ├── property.gif │ │ │ │ │ │ ├── table.gif │ │ │ │ │ │ ├── timestamp.gif │ │ │ │ │ │ └── version.gif │ │ │ │ │ └── registration │ │ │ │ │ │ └── warn.gif │ │ │ │ └── meta │ │ │ │ │ ├── hibconfig3.meta │ │ │ │ │ ├── hibernate-configuration-2.0.dtd │ │ │ │ │ ├── hibernate-configuration-3.0.dtd │ │ │ │ │ ├── hibernate-mapping-3.0.dtd │ │ │ │ │ └── hibernate3.meta │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── xml │ │ │ │ ├── HibernateXMLPlugin.java │ │ │ │ ├── Messages.java │ │ │ │ ├── messages.properties │ │ │ │ └── model │ │ │ │ ├── FileHibernateFilteredTreeConstraint.java │ │ │ │ ├── GrantActionsConstraint.java │ │ │ │ ├── HibConfigLoader.java │ │ │ │ ├── HibernateConstants.java │ │ │ │ ├── HibernateLoader.java │ │ │ │ ├── HibernateRecognizer.java │ │ │ │ ├── HibernateResourceTree.java │ │ │ │ ├── constraint │ │ │ │ ├── ELConstraint.java │ │ │ │ ├── IntELConstraint.java │ │ │ │ ├── ListELConstraint.java │ │ │ │ └── ListIntELConstraint.java │ │ │ │ ├── handlers │ │ │ │ ├── AddHibernateAnyHandler.java │ │ │ │ ├── AddHibernateCollectionHandler.java │ │ │ │ ├── AddHibernateManyToAnyHandler.java │ │ │ │ ├── AddPropertySupport.java │ │ │ │ ├── AddSubclassHandler.java │ │ │ │ ├── DeletePropertyHandler.java │ │ │ │ ├── DeleteUniqueHandler.java │ │ │ │ ├── FolderOwnerAdopt.java │ │ │ │ ├── OpenResourceHandler.java │ │ │ │ ├── OpenSourceHandler.java │ │ │ │ ├── PasteUniqueHandler.java │ │ │ │ └── SimpleAddClassHandler.java │ │ │ │ ├── helpers │ │ │ │ ├── ColumnsStructureHelper.java │ │ │ │ ├── HibernateTypeHelper.java │ │ │ │ └── IdStructureHelper.java │ │ │ │ └── impl │ │ │ │ ├── ComplexAttrUtil.java │ │ │ │ ├── ContextPackageProvider.java │ │ │ │ ├── DatabaseObjectImpl.java │ │ │ │ ├── FileHibernateImpl.java │ │ │ │ ├── HibClassImpl.java │ │ │ │ ├── HibConfigCacheImpl.java │ │ │ │ ├── HibConfigComplexPropertyImpl.java │ │ │ │ ├── HibConfigListenerImpl.java │ │ │ │ ├── HibConfigMappingImpl.java │ │ │ │ ├── HibConfigSimplePropertyImpl.java │ │ │ │ ├── HibernateAuxFolderImpl.java │ │ │ │ ├── HibernateClassImpl.java │ │ │ │ ├── HibernateElementImpl.java │ │ │ │ ├── HibernateFormulaImpl.java │ │ │ │ ├── HibernateIdImpl.java │ │ │ │ ├── HibernateMapImpl.java │ │ │ │ ├── HibernateMetaImpl.java │ │ │ │ ├── HibernateQueryFolderImpl.java │ │ │ │ ├── HibernateVersionImpl.java │ │ │ │ ├── OrderedObject2Impl.java │ │ │ │ └── RegularObject2Impl.java │ │ └── pom.xml │ ├── pom.xml │ ├── runtime │ │ ├── org.jboss.tools.hibernate.orm.runtime.common │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── orm │ │ │ │ └── runtime │ │ │ │ └── common │ │ │ │ ├── GenericFacadeFactory.java │ │ │ │ ├── IDatabaseReader.java │ │ │ │ ├── IFacade.java │ │ │ │ └── ReflectUtil.java │ │ ├── org.jboss.tools.hibernate.orm.runtime.exp │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ ├── hibernate │ │ │ │ └── tool │ │ │ │ │ └── hbm2x │ │ │ │ │ ├── HibernateConfigurationExporter.java │ │ │ │ │ ├── HibernateMappingExporter.java │ │ │ │ │ └── POJOExporter.java │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── orm │ │ │ │ └── runtime │ │ │ │ └── exp │ │ │ │ └── internal │ │ │ │ └── ServiceImpl.java │ │ ├── org.jboss.tools.hibernate.orm.runtime.v_6_2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ ├── hibernate │ │ │ │ └── tool │ │ │ │ │ └── hbm2x │ │ │ │ │ ├── DAOExporter.java │ │ │ │ │ ├── DocExporter.java │ │ │ │ │ ├── GenericExporter.java │ │ │ │ │ ├── Hbm2DDLExporter.java │ │ │ │ │ └── QueryExporter.java │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── orm │ │ │ │ └── runtime │ │ │ │ └── v_6_2 │ │ │ │ └── ServiceImpl.java │ │ ├── org.jboss.tools.hibernate.orm.runtime.v_6_3 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ ├── hibernate │ │ │ │ └── tool │ │ │ │ │ └── hbm2x │ │ │ │ │ ├── DAOExporter.java │ │ │ │ │ ├── DocExporter.java │ │ │ │ │ ├── GenericExporter.java │ │ │ │ │ ├── Hbm2DDLExporter.java │ │ │ │ │ └── QueryExporter.java │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── orm │ │ │ │ └── runtime │ │ │ │ └── v_6_3 │ │ │ │ └── ServiceImpl.java │ │ ├── org.jboss.tools.hibernate.orm.runtime.v_6_4 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ ├── hibernate │ │ │ │ └── tool │ │ │ │ │ └── hbm2x │ │ │ │ │ ├── DAOExporter.java │ │ │ │ │ ├── DocExporter.java │ │ │ │ │ ├── GenericExporter.java │ │ │ │ │ ├── Hbm2DDLExporter.java │ │ │ │ │ └── QueryExporter.java │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── orm │ │ │ │ └── runtime │ │ │ │ └── v_6_4 │ │ │ │ └── ServiceImpl.java │ │ ├── org.jboss.tools.hibernate.orm.runtime.v_6_5 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── orm │ │ │ │ └── runtime │ │ │ │ └── v_6_5 │ │ │ │ └── ServiceImpl.java │ │ ├── org.jboss.tools.hibernate.orm.runtime.v_6_6 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ ├── hibernate │ │ │ │ └── tool │ │ │ │ │ └── hbm2x │ │ │ │ │ ├── DAOExporter.java │ │ │ │ │ ├── DocExporter.java │ │ │ │ │ ├── GenericExporter.java │ │ │ │ │ ├── Hbm2DDLExporter.java │ │ │ │ │ └── QueryExporter.java │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── orm │ │ │ │ └── runtime │ │ │ │ └── v_6_6 │ │ │ │ └── ServiceImpl.java │ │ ├── org.jboss.tools.hibernate.orm.runtime.v_7_0 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ ├── hibernate │ │ │ │ └── tool │ │ │ │ │ └── hbm2x │ │ │ │ │ ├── DAOExporter.java │ │ │ │ │ ├── DocExporter.java │ │ │ │ │ ├── GenericExporter.java │ │ │ │ │ ├── Hbm2DDLExporter.java │ │ │ │ │ └── QueryExporter.java │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── orm │ │ │ │ └── runtime │ │ │ │ └── v_7_0 │ │ │ │ └── ServiceImpl.java │ │ ├── org.jboss.tools.hibernate.runtime.common │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── runtime │ │ │ │ └── common │ │ │ │ ├── AbstractArtifactCollectorFacade.java │ │ │ │ ├── AbstractCfg2HbmToolFacade.java │ │ │ │ ├── AbstractClassMetadataFacade.java │ │ │ │ ├── AbstractCollectionMetadataFacade.java │ │ │ │ ├── AbstractColumnFacade.java │ │ │ │ ├── AbstractConfigurationFacade.java │ │ │ │ ├── AbstractCriteriaFacade.java │ │ │ │ ├── AbstractEnvironmentFacade.java │ │ │ │ ├── AbstractExporterFacade.java │ │ │ │ ├── AbstractFacade.java │ │ │ │ ├── AbstractFacadeFactory.java │ │ │ │ ├── AbstractForeignKeyFacade.java │ │ │ │ ├── AbstractGenericExporterFacade.java │ │ │ │ ├── AbstractHQLCodeAssistFacade.java │ │ │ │ ├── AbstractHQLCompletionProposalFacade.java │ │ │ │ ├── AbstractHQLQueryPlanFacade.java │ │ │ │ ├── AbstractHbm2DDLExporterFacade.java │ │ │ │ ├── AbstractHibernateMappingExporterFacade.java │ │ │ │ ├── AbstractJoinFacade.java │ │ │ │ ├── AbstractNamingStrategyFacade.java │ │ │ │ ├── AbstractOverrideRepositoryFacade.java │ │ │ │ ├── AbstractPersistentClassFacade.java │ │ │ │ ├── AbstractPrimaryKeyFacade.java │ │ │ │ ├── AbstractPropertyFacade.java │ │ │ │ ├── AbstractQueryExporterFacade.java │ │ │ │ ├── AbstractQueryFacade.java │ │ │ │ ├── AbstractQueryTranslatorFacade.java │ │ │ │ ├── AbstractReverseEngineeringSettingsFacade.java │ │ │ │ ├── AbstractReverseEngineeringStrategyFacade.java │ │ │ │ ├── AbstractSchemaExportFacade.java │ │ │ │ ├── AbstractService.java │ │ │ │ ├── AbstractSessionFacade.java │ │ │ │ ├── AbstractSessionFactoryFacade.java │ │ │ │ ├── AbstractSpecialRootClassFacade.java │ │ │ │ ├── AbstractTableFacade.java │ │ │ │ ├── AbstractTableFilterFacade.java │ │ │ │ ├── AbstractTypeFacade.java │ │ │ │ ├── AbstractTypeFactoryFacade.java │ │ │ │ ├── AbstractValueFacade.java │ │ │ │ ├── IFacade.java │ │ │ │ ├── IFacadeFactory.java │ │ │ │ ├── UsageTracker.java │ │ │ │ ├── Util.java │ │ │ │ └── internal │ │ │ │ └── HibernateRuntimeCommon.java │ │ ├── org.jboss.tools.hibernate.runtime.spi │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ ├── schema │ │ │ │ └── services.exsd │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ ├── runtime │ │ │ │ └── spi │ │ │ │ │ ├── HibernateException.java │ │ │ │ │ ├── IArtifactCollector.java │ │ │ │ │ ├── ICfg2HbmTool.java │ │ │ │ │ ├── IClassMetadata.java │ │ │ │ │ ├── ICollectionMetadata.java │ │ │ │ │ ├── IColumn.java │ │ │ │ │ ├── IConfiguration.java │ │ │ │ │ ├── ICriteria.java │ │ │ │ │ ├── IEnvironment.java │ │ │ │ │ ├── IExportPOJODelegate.java │ │ │ │ │ ├── IExporter.java │ │ │ │ │ ├── IForeignKey.java │ │ │ │ │ ├── IGenericExporter.java │ │ │ │ │ ├── IHQLCodeAssist.java │ │ │ │ │ ├── IHQLCompletionHandler.java │ │ │ │ │ ├── IHQLCompletionProposal.java │ │ │ │ │ ├── IHQLQueryPlan.java │ │ │ │ │ ├── IHbm2DDLExporter.java │ │ │ │ │ ├── IHibernateMappingExporter.java │ │ │ │ │ ├── IJoin.java │ │ │ │ │ ├── INamingStrategy.java │ │ │ │ │ ├── IOverrideRepository.java │ │ │ │ │ ├── IPersistentClass.java │ │ │ │ │ ├── IPrimaryKey.java │ │ │ │ │ ├── IProgressListener.java │ │ │ │ │ ├── IProperty.java │ │ │ │ │ ├── IQuery.java │ │ │ │ │ ├── IQueryExporter.java │ │ │ │ │ ├── IQueryTranslator.java │ │ │ │ │ ├── IReverseEngineeringSettings.java │ │ │ │ │ ├── IReverseEngineeringStrategy.java │ │ │ │ │ ├── ISchemaExport.java │ │ │ │ │ ├── IService.java │ │ │ │ │ ├── ISession.java │ │ │ │ │ ├── ISessionFactory.java │ │ │ │ │ ├── ITable.java │ │ │ │ │ ├── ITableFilter.java │ │ │ │ │ ├── IType.java │ │ │ │ │ ├── ITypeFactory.java │ │ │ │ │ ├── IValue.java │ │ │ │ │ └── RuntimeServiceManager.java │ │ │ │ └── spi │ │ │ │ └── internal │ │ │ │ └── HibernateServicePlugin.java │ │ ├── org.jboss.tools.hibernate.runtime.v_3_5 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── runtime │ │ │ │ └── v_3_5 │ │ │ │ └── internal │ │ │ │ ├── ClassMetadataFacadeImpl.java │ │ │ │ ├── ColumnFacadeImpl.java │ │ │ │ ├── FacadeFactoryImpl.java │ │ │ │ ├── HibernateMappingExporterExtension.java │ │ │ │ ├── OpenMappingUtilsEjb3.java │ │ │ │ ├── PersistentClassFacadeImpl.java │ │ │ │ ├── ServiceImpl.java │ │ │ │ ├── SpecialRootClassFacadeImpl.java │ │ │ │ ├── TypeFacadeImpl.java │ │ │ │ └── TypeFactoryFacadeImpl.java │ │ ├── org.jboss.tools.hibernate.runtime.v_3_6 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── runtime │ │ │ │ └── v_3_6 │ │ │ │ └── internal │ │ │ │ ├── ClassMetadataFacadeImpl.java │ │ │ │ ├── ColumnFacadeImpl.java │ │ │ │ ├── FacadeFactoryImpl.java │ │ │ │ ├── HibernateMappingExporterExtension.java │ │ │ │ ├── OpenMappingUtilsEjb3.java │ │ │ │ ├── PersistentClassFacadeImpl.java │ │ │ │ ├── ServiceImpl.java │ │ │ │ ├── SpecialRootClassFacadeImpl.java │ │ │ │ └── util │ │ │ │ └── DummyMappings.java │ │ ├── org.jboss.tools.hibernate.runtime.v_4_0 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── runtime │ │ │ │ └── v_4_0 │ │ │ │ └── internal │ │ │ │ ├── ColumnFacadeImpl.java │ │ │ │ ├── ConfigurationFacadeImpl.java │ │ │ │ ├── FacadeFactoryImpl.java │ │ │ │ ├── HibernateMappingExporterExtension.java │ │ │ │ ├── OpenMappingUtilsEjb3.java │ │ │ │ ├── PersistentClassFacadeImpl.java │ │ │ │ ├── ServiceImpl.java │ │ │ │ ├── SpecialRootClassFacadeImpl.java │ │ │ │ └── util │ │ │ │ └── DummyMappings.java │ │ ├── org.jboss.tools.hibernate.runtime.v_4_3 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── runtime │ │ │ │ └── v_4_3 │ │ │ │ └── internal │ │ │ │ ├── ColumnFacadeImpl.java │ │ │ │ ├── ConfigurationFacadeImpl.java │ │ │ │ ├── EnvironmentFacadeImpl.java │ │ │ │ ├── FacadeFactoryImpl.java │ │ │ │ ├── HibernateMappingExporterExtension.java │ │ │ │ ├── OpenMappingUtilsEjb3.java │ │ │ │ ├── PersistentClassFacadeImpl.java │ │ │ │ ├── ServiceImpl.java │ │ │ │ ├── SpecialRootClassFacadeImpl.java │ │ │ │ └── util │ │ │ │ └── DummyMappings.java │ │ ├── org.jboss.tools.hibernate.runtime.v_5_0 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── runtime │ │ │ │ └── v_5_0 │ │ │ │ └── internal │ │ │ │ ├── ColumnFacadeImpl.java │ │ │ │ ├── ConfigurationFacadeImpl.java │ │ │ │ ├── EnvironmentFacadeImpl.java │ │ │ │ ├── FacadeFactoryImpl.java │ │ │ │ ├── HibernateMappingExporterExtension.java │ │ │ │ ├── HibernateToolsPersistenceProvider.java │ │ │ │ ├── JPAConfiguration.java │ │ │ │ ├── OpenMappingUtilsEjb3.java │ │ │ │ ├── PersistentClassFacadeImpl.java │ │ │ │ ├── ServiceImpl.java │ │ │ │ ├── SpecialRootClassFacadeImpl.java │ │ │ │ └── util │ │ │ │ └── DummyMetadataImplementor.java │ │ ├── org.jboss.tools.hibernate.runtime.v_5_1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── runtime │ │ │ │ └── v_5_1 │ │ │ │ └── internal │ │ │ │ ├── ColumnFacadeImpl.java │ │ │ │ ├── ConfigurationFacadeImpl.java │ │ │ │ ├── EnvironmentFacadeImpl.java │ │ │ │ ├── FacadeFactoryImpl.java │ │ │ │ ├── HibernateMappingExporterExtension.java │ │ │ │ ├── HibernateToolsPersistenceProvider.java │ │ │ │ ├── JPAConfiguration.java │ │ │ │ ├── OpenMappingUtilsEjb3.java │ │ │ │ ├── PersistentClassFacadeImpl.java │ │ │ │ ├── SchemaExportFacadeImpl.java │ │ │ │ ├── ServiceImpl.java │ │ │ │ ├── SpecialRootClassFacadeImpl.java │ │ │ │ └── util │ │ │ │ └── DummyMetadataImplementor.java │ │ ├── org.jboss.tools.hibernate.runtime.v_5_2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── runtime │ │ │ │ └── v_5_2 │ │ │ │ └── internal │ │ │ │ ├── ClassMetadataFacadeImpl.java │ │ │ │ ├── ColumnFacadeImpl.java │ │ │ │ ├── ConfigurationFacadeImpl.java │ │ │ │ ├── EnvironmentFacadeImpl.java │ │ │ │ ├── FacadeFactoryImpl.java │ │ │ │ ├── HibernateMappingExporterExtension.java │ │ │ │ ├── HibernateToolsPersistenceProvider.java │ │ │ │ ├── JPAConfiguration.java │ │ │ │ ├── OpenMappingUtilsEjb3.java │ │ │ │ ├── PersistentClassFacadeImpl.java │ │ │ │ ├── SchemaExportFacadeImpl.java │ │ │ │ ├── ServiceImpl.java │ │ │ │ ├── SessionFacadeImpl.java │ │ │ │ ├── SessionFactoryFacadeImpl.java │ │ │ │ ├── SpecialRootClassFacadeImpl.java │ │ │ │ └── util │ │ │ │ └── DummyMetadataImplementor.java │ │ ├── org.jboss.tools.hibernate.runtime.v_5_3 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── runtime │ │ │ │ └── v_5_3 │ │ │ │ └── internal │ │ │ │ ├── ClassMetadataFacadeImpl.java │ │ │ │ ├── ColumnFacadeImpl.java │ │ │ │ ├── ConfigurationFacadeImpl.java │ │ │ │ ├── EnvironmentFacadeImpl.java │ │ │ │ ├── ExporterFacadeImpl.java │ │ │ │ ├── FacadeFactoryImpl.java │ │ │ │ ├── HibernateMappingExporterExtension.java │ │ │ │ ├── PersistentClassFacadeImpl.java │ │ │ │ ├── SchemaExportFacadeImpl.java │ │ │ │ ├── ServiceImpl.java │ │ │ │ ├── SessionFacadeImpl.java │ │ │ │ ├── SessionFactoryFacadeImpl.java │ │ │ │ ├── SpecialRootClassFacadeImpl.java │ │ │ │ └── util │ │ │ │ ├── ConfigurationMetadataDescriptor.java │ │ │ │ ├── DummyMetadataBuildingContext.java │ │ │ │ ├── DummyMetadataDescriptor.java │ │ │ │ ├── HibernateToolsPersistenceProvider.java │ │ │ │ ├── JdbcMetadataConfiguration.java │ │ │ │ ├── JpaConfiguration.java │ │ │ │ ├── JpaMappingFileHelper.java │ │ │ │ ├── MetadataHelper.java │ │ │ │ ├── MockConnectionProvider.java │ │ │ │ └── MockDialect.java │ │ ├── org.jboss.tools.hibernate.runtime.v_5_4 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── runtime │ │ │ │ └── v_5_4 │ │ │ │ └── internal │ │ │ │ ├── ClassMetadataFacadeImpl.java │ │ │ │ ├── ColumnFacadeImpl.java │ │ │ │ ├── ConfigurationFacadeImpl.java │ │ │ │ ├── EnvironmentFacadeImpl.java │ │ │ │ ├── ExporterFacadeImpl.java │ │ │ │ ├── FacadeFactoryImpl.java │ │ │ │ ├── HibernateMappingExporterExtension.java │ │ │ │ ├── PersistentClassFacadeImpl.java │ │ │ │ ├── SchemaExportFacadeImpl.java │ │ │ │ ├── ServiceImpl.java │ │ │ │ ├── SessionFacadeImpl.java │ │ │ │ ├── SessionFactoryFacadeImpl.java │ │ │ │ ├── SpecialRootClassFacadeImpl.java │ │ │ │ └── util │ │ │ │ ├── ConfigurationMetadataDescriptor.java │ │ │ │ ├── DummyMetadataBuildingContext.java │ │ │ │ ├── DummyMetadataDescriptor.java │ │ │ │ ├── HibernateToolsPersistenceProvider.java │ │ │ │ ├── JdbcMetadataConfiguration.java │ │ │ │ ├── JpaConfiguration.java │ │ │ │ ├── JpaMappingFileHelper.java │ │ │ │ ├── MetadataHelper.java │ │ │ │ ├── MockConnectionProvider.java │ │ │ │ └── MockDialect.java │ │ ├── org.jboss.tools.hibernate.runtime.v_5_5 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── runtime │ │ │ │ └── v_5_5 │ │ │ │ └── internal │ │ │ │ ├── ClassMetadataFacadeImpl.java │ │ │ │ ├── ColumnFacadeImpl.java │ │ │ │ ├── ConfigurationFacadeImpl.java │ │ │ │ ├── CriteriaFacadeImpl.java │ │ │ │ ├── EnvironmentFacadeImpl.java │ │ │ │ ├── ExporterFacadeImpl.java │ │ │ │ ├── FacadeFactoryImpl.java │ │ │ │ ├── Hbm2DDLExporterFacadeImpl.java │ │ │ │ ├── HibernateMappingExporterExtension.java │ │ │ │ ├── PersistentClassFacadeImpl.java │ │ │ │ ├── SchemaExportFacadeImpl.java │ │ │ │ ├── ServiceImpl.java │ │ │ │ ├── SessionFacadeImpl.java │ │ │ │ ├── SessionFactoryFacadeImpl.java │ │ │ │ ├── SpecialRootClassFacadeImpl.java │ │ │ │ └── util │ │ │ │ ├── ConfigurationMetadataDescriptor.java │ │ │ │ ├── DummyMetadataBuildingContext.java │ │ │ │ ├── DummyMetadataDescriptor.java │ │ │ │ ├── HibernateToolsPersistenceProvider.java │ │ │ │ ├── JdbcMetadataConfiguration.java │ │ │ │ ├── JpaConfiguration.java │ │ │ │ ├── JpaMappingFileHelper.java │ │ │ │ ├── MetadataHelper.java │ │ │ │ ├── MockConnectionProvider.java │ │ │ │ └── MockDialect.java │ │ ├── org.jboss.tools.hibernate.runtime.v_5_6 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── runtime │ │ │ │ └── v_5_6 │ │ │ │ └── internal │ │ │ │ ├── ClassMetadataFacadeImpl.java │ │ │ │ ├── ColumnFacadeImpl.java │ │ │ │ ├── ConfigurationFacadeImpl.java │ │ │ │ ├── CriteriaFacadeImpl.java │ │ │ │ ├── EnvironmentFacadeImpl.java │ │ │ │ ├── ExporterFacadeImpl.java │ │ │ │ ├── FacadeFactoryImpl.java │ │ │ │ ├── HibernateMappingExporterExtension.java │ │ │ │ ├── PersistentClassFacadeImpl.java │ │ │ │ ├── SchemaExportFacadeImpl.java │ │ │ │ ├── ServiceImpl.java │ │ │ │ ├── SessionFacadeImpl.java │ │ │ │ ├── SessionFactoryFacadeImpl.java │ │ │ │ ├── SpecialRootClassFacadeImpl.java │ │ │ │ └── util │ │ │ │ ├── ConfigurationMetadataDescriptor.java │ │ │ │ ├── DummyMetadataBuildingContext.java │ │ │ │ ├── DummyMetadataDescriptor.java │ │ │ │ ├── HibernateToolsPersistenceProvider.java │ │ │ │ ├── JdbcMetadataConfiguration.java │ │ │ │ ├── JpaConfiguration.java │ │ │ │ ├── JpaMappingFileHelper.java │ │ │ │ ├── MetadataHelper.java │ │ │ │ ├── MockConnectionProvider.java │ │ │ │ └── MockDialect.java │ │ ├── org.jboss.tools.hibernate.runtime.v_6_0 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ ├── hibernate │ │ │ │ └── tool │ │ │ │ │ └── hbm2x │ │ │ │ │ ├── DAOExporter.java │ │ │ │ │ ├── DocExporter.java │ │ │ │ │ ├── GenericExporter.java │ │ │ │ │ ├── Hbm2DDLExporter.java │ │ │ │ │ ├── HibernateConfigurationExporter.java │ │ │ │ │ ├── HibernateMappingExporter.java │ │ │ │ │ ├── POJOExporter.java │ │ │ │ │ └── QueryExporter.java │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── runtime │ │ │ │ └── v_6_0 │ │ │ │ └── internal │ │ │ │ ├── ClassMetadataFacadeImpl.java │ │ │ │ ├── ColumnFacadeImpl.java │ │ │ │ ├── ConfigurationFacadeImpl.java │ │ │ │ ├── CriteriaFacadeImpl.java │ │ │ │ ├── EnvironmentFacadeImpl.java │ │ │ │ ├── ExporterFacadeImpl.java │ │ │ │ ├── FacadeFactoryImpl.java │ │ │ │ ├── ForeignKeyFacadeImpl.java │ │ │ │ ├── GenericExporterFacadeImpl.java │ │ │ │ ├── Hbm2DDLExporterFacadeImpl.java │ │ │ │ ├── HibernateMappingExporterExtension.java │ │ │ │ ├── HibernateMappingExporterFacadeImpl.java │ │ │ │ ├── OverrideRepositoryFacadeImpl.java │ │ │ │ ├── PersistentClassFacadeImpl.java │ │ │ │ ├── QueryExporterFacadeImpl.java │ │ │ │ ├── QueryFacadeImpl.java │ │ │ │ ├── ReverseEngineeringStrategyFacadeImpl.java │ │ │ │ ├── SchemaExportFacadeImpl.java │ │ │ │ ├── ServiceImpl.java │ │ │ │ ├── SessionFacadeImpl.java │ │ │ │ ├── SessionFactoryFacadeImpl.java │ │ │ │ ├── SpecialRootClassFacadeImpl.java │ │ │ │ ├── TypeFacadeImpl.java │ │ │ │ ├── TypeFactoryFacadeImpl.java │ │ │ │ ├── legacy │ │ │ │ ├── BigDecimalType.java │ │ │ │ ├── BigIntegerType.java │ │ │ │ ├── BooleanType.java │ │ │ │ ├── ByteType.java │ │ │ │ ├── CalendarDateType.java │ │ │ │ ├── CalendarType.java │ │ │ │ ├── CharacterType.java │ │ │ │ ├── ClassType.java │ │ │ │ ├── CurrencyType.java │ │ │ │ ├── DateType.java │ │ │ │ ├── DoubleType.java │ │ │ │ ├── FloatType.java │ │ │ │ ├── IntegerType.java │ │ │ │ ├── LocaleType.java │ │ │ │ ├── LongType.java │ │ │ │ ├── ShortType.java │ │ │ │ ├── StringType.java │ │ │ │ ├── TextType.java │ │ │ │ ├── TimeType.java │ │ │ │ ├── TimeZoneType.java │ │ │ │ ├── TimestampType.java │ │ │ │ ├── TrueFalseType.java │ │ │ │ └── YesNoType.java │ │ │ │ └── util │ │ │ │ ├── ConfigurationMetadataDescriptor.java │ │ │ │ ├── DummyMetadataBuildingContext.java │ │ │ │ ├── DummyMetadataDescriptor.java │ │ │ │ ├── HibernateToolsPersistenceProvider.java │ │ │ │ ├── JdbcMetadataConfiguration.java │ │ │ │ ├── JpaConfiguration.java │ │ │ │ ├── JpaMappingFileHelper.java │ │ │ │ ├── MetadataHelper.java │ │ │ │ ├── MockConnectionProvider.java │ │ │ │ └── MockDialect.java │ │ ├── org.jboss.tools.hibernate.runtime.v_6_1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ ├── hibernate │ │ │ │ └── tool │ │ │ │ │ └── hbm2x │ │ │ │ │ ├── DAOExporter.java │ │ │ │ │ ├── DocExporter.java │ │ │ │ │ ├── GenericExporter.java │ │ │ │ │ ├── Hbm2DDLExporter.java │ │ │ │ │ ├── HibernateConfigurationExporter.java │ │ │ │ │ ├── HibernateMappingExporter.java │ │ │ │ │ ├── POJOExporter.java │ │ │ │ │ └── QueryExporter.java │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── runtime │ │ │ │ └── v_6_1 │ │ │ │ └── internal │ │ │ │ ├── ClassMetadataFacadeImpl.java │ │ │ │ ├── ColumnFacadeImpl.java │ │ │ │ ├── ConfigurationFacadeImpl.java │ │ │ │ ├── CriteriaFacadeImpl.java │ │ │ │ ├── EnvironmentFacadeImpl.java │ │ │ │ ├── ExporterFacadeImpl.java │ │ │ │ ├── FacadeFactoryImpl.java │ │ │ │ ├── ForeignKeyFacadeImpl.java │ │ │ │ ├── GenericExporterFacadeImpl.java │ │ │ │ ├── Hbm2DDLExporterFacadeImpl.java │ │ │ │ ├── HibernateMappingExporterExtension.java │ │ │ │ ├── HibernateMappingExporterFacadeImpl.java │ │ │ │ ├── OverrideRepositoryFacadeImpl.java │ │ │ │ ├── PersistentClassFacadeImpl.java │ │ │ │ ├── QueryExporterFacadeImpl.java │ │ │ │ ├── QueryFacadeImpl.java │ │ │ │ ├── ReverseEngineeringStrategyFacadeImpl.java │ │ │ │ ├── SchemaExportFacadeImpl.java │ │ │ │ ├── ServiceImpl.java │ │ │ │ ├── SessionFacadeImpl.java │ │ │ │ ├── SessionFactoryFacadeImpl.java │ │ │ │ ├── SpecialRootClassFacadeImpl.java │ │ │ │ ├── TypeFacadeImpl.java │ │ │ │ ├── TypeFactoryFacadeImpl.java │ │ │ │ ├── legacy │ │ │ │ ├── BigDecimalType.java │ │ │ │ ├── BigIntegerType.java │ │ │ │ ├── BooleanType.java │ │ │ │ ├── ByteType.java │ │ │ │ ├── CalendarDateType.java │ │ │ │ ├── CalendarType.java │ │ │ │ ├── CharacterType.java │ │ │ │ ├── ClassType.java │ │ │ │ ├── CurrencyType.java │ │ │ │ ├── DateType.java │ │ │ │ ├── DoubleType.java │ │ │ │ ├── FloatType.java │ │ │ │ ├── IntegerType.java │ │ │ │ ├── LocaleType.java │ │ │ │ ├── LongType.java │ │ │ │ ├── ShortType.java │ │ │ │ ├── StringType.java │ │ │ │ ├── TextType.java │ │ │ │ ├── TimeType.java │ │ │ │ ├── TimeZoneType.java │ │ │ │ ├── TimestampType.java │ │ │ │ ├── TrueFalseType.java │ │ │ │ └── YesNoType.java │ │ │ │ └── util │ │ │ │ ├── ConfigurationMetadataDescriptor.java │ │ │ │ ├── DummyMetadataBuildingContext.java │ │ │ │ ├── DummyMetadataDescriptor.java │ │ │ │ ├── HibernateToolsPersistenceProvider.java │ │ │ │ ├── JdbcMetadataConfiguration.java │ │ │ │ ├── JpaConfiguration.java │ │ │ │ ├── JpaMappingFileHelper.java │ │ │ │ ├── MetadataHelper.java │ │ │ │ ├── MockConnectionProvider.java │ │ │ │ └── MockDialect.java │ │ └── pom.xml │ └── ui │ │ ├── org.jboss.tools.hibernate.orm.ui │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── orm │ │ │ └── ui │ │ │ └── internal │ │ │ └── RuntimesPreferencePage.java │ │ └── pom.xml ├── pom.xml └── test │ ├── core │ ├── org.hibernate.eclipse.jdt.ui.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.properties │ │ ├── pom.xml │ │ ├── res │ │ │ ├── hbm │ │ │ │ └── pack │ │ │ │ │ ├── A.java │ │ │ │ │ └── B.java │ │ │ ├── project │ │ │ │ └── test │ │ │ │ │ └── annotated │ │ │ │ │ ├── fields │ │ │ │ │ ├── Country.java │ │ │ │ │ ├── Document.java │ │ │ │ │ ├── DocumentBase.java │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── EmployeeStatus.java │ │ │ │ │ ├── Entity.java │ │ │ │ │ ├── Foto.java │ │ │ │ │ ├── FotoXPerson.java │ │ │ │ │ ├── Passport.java │ │ │ │ │ ├── Person.java │ │ │ │ │ ├── PersonXFoto.java │ │ │ │ │ ├── SalaryRate.java │ │ │ │ │ ├── Staff.java │ │ │ │ │ ├── Visa.java │ │ │ │ │ └── ZTypesComplex.java │ │ │ │ │ └── getters │ │ │ │ │ ├── Country.java │ │ │ │ │ ├── Document.java │ │ │ │ │ ├── DocumentBase.java │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── EmployeeStatus.java │ │ │ │ │ ├── Entity.java │ │ │ │ │ ├── Foto.java │ │ │ │ │ ├── FotoXPerson.java │ │ │ │ │ ├── Identifiable.java │ │ │ │ │ ├── Passport.java │ │ │ │ │ ├── Person.java │ │ │ │ │ ├── PersonXFoto.java │ │ │ │ │ ├── SalaryRate.java │ │ │ │ │ ├── Staff.java │ │ │ │ │ ├── Visa.java │ │ │ │ │ └── ZTypesComplex.java │ │ │ └── specimen │ │ │ │ └── test │ │ │ │ └── annotated │ │ │ │ ├── fields │ │ │ │ ├── Country.java │ │ │ │ ├── Document.java │ │ │ │ ├── DocumentBase.java │ │ │ │ ├── Employee.java │ │ │ │ ├── EmployeeStatus.java │ │ │ │ ├── Entity.java │ │ │ │ ├── Foto.java │ │ │ │ ├── FotoXPerson.java │ │ │ │ ├── Passport.java │ │ │ │ ├── Person.java │ │ │ │ ├── PersonXFoto.java │ │ │ │ ├── SalaryRate.java │ │ │ │ ├── Staff.java │ │ │ │ ├── Visa.java │ │ │ │ └── ZTypesComplex.java │ │ │ │ └── getters │ │ │ │ ├── Country.java │ │ │ │ ├── Document.java │ │ │ │ ├── DocumentBase.java │ │ │ │ ├── Employee.java │ │ │ │ ├── EmployeeStatus.java │ │ │ │ ├── Entity.java │ │ │ │ ├── Foto.java │ │ │ │ ├── FotoXPerson.java │ │ │ │ ├── Identifiable.java │ │ │ │ ├── Passport.java │ │ │ │ ├── Person.java │ │ │ │ ├── PersonXFoto.java │ │ │ │ ├── SalaryRate.java │ │ │ │ ├── Staff.java │ │ │ │ ├── Visa.java │ │ │ │ └── ZTypesComplex.java │ │ ├── src │ │ │ └── org │ │ │ │ └── hibernate │ │ │ │ └── eclipse │ │ │ │ ├── console │ │ │ │ └── test │ │ │ │ │ ├── ConsoleTestMessages.java │ │ │ │ │ ├── ConsoleTestMessages.properties │ │ │ │ │ ├── HibernateConsoleTest.java │ │ │ │ │ ├── launchcfg │ │ │ │ │ ├── TestLaunchConfig.java │ │ │ │ │ └── TestWorkingCopy.java │ │ │ │ │ ├── project │ │ │ │ │ ├── JavaProjectHelper.java │ │ │ │ │ ├── SimpleTestProject.java │ │ │ │ │ ├── SimpleTestProjectWithMapping.java │ │ │ │ │ └── TestProject.java │ │ │ │ │ └── utils │ │ │ │ │ ├── ConsoleConfigUtils.java │ │ │ │ │ └── FilesTransfer.java │ │ │ │ └── jdt │ │ │ │ └── ui │ │ │ │ └── test │ │ │ │ ├── HQLQueryValidatorTest.java │ │ │ │ ├── HibernateJDTuiTestPlugin.java │ │ │ │ ├── JDTuiAllTests.java │ │ │ │ ├── JPAMapTest.java │ │ │ │ ├── JavaHBMQueryTest.java │ │ │ │ └── hbmexporter │ │ │ │ └── HbmExporterTest.java │ │ └── testresources │ │ │ ├── ejb3-persistence.jar │ │ │ └── hsqldb.jar │ ├── org.jboss.tools.hibernate.jpt.core.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.properties │ │ ├── pom.xml │ │ ├── res │ │ │ ├── testHibernateJpaOrmProject │ │ │ │ ├── src │ │ │ │ │ ├── META-INF │ │ │ │ │ │ ├── MANIFEST.MF │ │ │ │ │ │ ├── orm.xml │ │ │ │ │ │ └── persistence.xml │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── JustData.java │ │ │ │ │ │ ├── ManyToMany1.java │ │ │ │ │ │ └── ManyToMany2.java │ │ │ │ │ ├── ns │ │ │ │ │ │ └── NamingStrategy.java │ │ │ │ │ └── schema.sql │ │ │ │ └── testHibernateJpaOrmProject.launch │ │ │ └── testHibernateJpaProject │ │ │ │ ├── src │ │ │ │ ├── META-INF │ │ │ │ │ ├── MANIFEST.MF │ │ │ │ │ └── persistence.xml │ │ │ │ ├── entity │ │ │ │ │ ├── ManyToMany1.java │ │ │ │ │ └── ManyToMany2.java │ │ │ │ └── ns │ │ │ │ │ └── NamingStrategy.java │ │ │ │ └── testHibernateJpaProject.launch │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── jpt │ │ │ └── core │ │ │ └── test │ │ │ ├── HibernateJPTuiTestPlugin.java │ │ │ ├── HibernateJpaModelTests.java │ │ │ ├── HibernateJpaOrmModelTests.java │ │ │ └── HibernateJptCoreTestSuite.java │ ├── org.jboss.tools.hibernate.orm.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.properties │ │ ├── pom.xml │ │ ├── res │ │ │ ├── META-INF │ │ │ │ ├── orm.xml │ │ │ │ └── persistence.xml │ │ │ ├── annotations │ │ │ │ └── database │ │ │ │ │ └── schema │ │ │ │ │ ├── CVgeneric.java │ │ │ │ │ ├── GeneNames.java │ │ │ │ │ ├── GeneNamesId.java │ │ │ │ │ ├── OrganismRoleId.java │ │ │ │ │ ├── OrganismRoleInReferenceSystemProcess.java │ │ │ │ │ ├── PhysicalGeneGenericIdType.java │ │ │ │ │ ├── ReferenceGeneProduct.java │ │ │ │ │ ├── ReferenceOrganism.java │ │ │ │ │ ├── ReferencePhysicalGene.java │ │ │ │ │ ├── ReferenceSystemProcess.java │ │ │ │ │ ├── ReferenceSystemProcessType.java │ │ │ │ │ └── ReferenceSystemProcessType_.java │ │ │ ├── core │ │ │ │ ├── abstractembeddedcomponents │ │ │ │ │ ├── cid │ │ │ │ │ │ ├── MyInterface.java │ │ │ │ │ │ ├── MyInterfaceImpl.java │ │ │ │ │ │ └── abstractembeddedcomponents.cid.hbm.xml │ │ │ │ │ └── propertyref │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ ├── AddressImpl.java │ │ │ │ │ │ ├── Server.java │ │ │ │ │ │ ├── ServerImpl.java │ │ │ │ │ │ └── mappings.hbm.xml │ │ │ │ ├── any │ │ │ │ │ ├── Address.java │ │ │ │ │ ├── ComplexPropertyValue.java │ │ │ │ │ ├── IntegerPropertyValue.java │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ ├── Person.java │ │ │ │ │ ├── Properties.hbm.xml │ │ │ │ │ ├── PropertySet.java │ │ │ │ │ ├── PropertyValue.java │ │ │ │ │ └── StringPropertyValue.java │ │ │ │ ├── array │ │ │ │ │ ├── A.hbm.xml │ │ │ │ │ ├── A.java │ │ │ │ │ └── B.java │ │ │ │ ├── batch │ │ │ │ │ ├── DataPoint.hbm.xml │ │ │ │ │ └── DataPoint.java │ │ │ │ ├── batchfetch │ │ │ │ │ ├── Model.java │ │ │ │ │ ├── ProductLine.hbm.xml │ │ │ │ │ └── ProductLine.java │ │ │ │ ├── bytecode │ │ │ │ │ ├── Bean.hbm.xml │ │ │ │ │ ├── Bean.java │ │ │ │ │ ├── BeanReflectionHelper.java │ │ │ │ │ └── ProxyBean.java │ │ │ │ ├── cache │ │ │ │ │ ├── Item.hbm.xml │ │ │ │ │ ├── Item.java │ │ │ │ │ └── VersionedItem.java │ │ │ │ ├── cascade │ │ │ │ │ ├── Job.hbm.xml │ │ │ │ │ ├── Job.java │ │ │ │ │ ├── JobBatch.hbm.xml │ │ │ │ │ └── JobBatch.java │ │ │ │ ├── cid │ │ │ │ │ ├── Customer.hbm.xml │ │ │ │ │ ├── Customer.java │ │ │ │ │ ├── LineItem.hbm.xml │ │ │ │ │ ├── LineItem.java │ │ │ │ │ ├── Order.hbm.xml │ │ │ │ │ ├── Order.java │ │ │ │ │ ├── Product.hbm.xml │ │ │ │ │ └── Product.java │ │ │ │ ├── collection │ │ │ │ │ ├── bag │ │ │ │ │ │ ├── BagOwner.java │ │ │ │ │ │ └── Mappings.hbm.xml │ │ │ │ │ ├── idbag │ │ │ │ │ │ ├── IdbagOwner.java │ │ │ │ │ │ └── Mappings.hbm.xml │ │ │ │ │ ├── list │ │ │ │ │ │ ├── ListOwner.java │ │ │ │ │ │ └── Mappings.hbm.xml │ │ │ │ │ ├── map │ │ │ │ │ │ ├── Child.java │ │ │ │ │ │ ├── Mappings.hbm.xml │ │ │ │ │ │ └── Parent.java │ │ │ │ │ ├── original │ │ │ │ │ │ ├── Email.java │ │ │ │ │ │ ├── Permission.java │ │ │ │ │ │ ├── User.java │ │ │ │ │ │ └── UserPermissions.hbm.xml │ │ │ │ │ └── set │ │ │ │ │ │ ├── Child.java │ │ │ │ │ │ ├── Mappings.hbm.xml │ │ │ │ │ │ └── Parent.java │ │ │ │ ├── component │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── Employee.java │ │ │ │ │ │ ├── Person.java │ │ │ │ │ │ ├── User.hbm.xml │ │ │ │ │ │ └── User.java │ │ │ │ │ └── cascading │ │ │ │ │ │ ├── collection │ │ │ │ │ │ ├── Definition.java │ │ │ │ │ │ ├── LocalizedStrings.java │ │ │ │ │ │ ├── Mappings.hbm.xml │ │ │ │ │ │ └── Value.java │ │ │ │ │ │ └── toone │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ ├── Document.java │ │ │ │ │ │ ├── Mappings.hbm.xml │ │ │ │ │ │ ├── PersonalInfo.java │ │ │ │ │ │ └── User.java │ │ │ │ ├── compositeelement │ │ │ │ │ ├── Child.java │ │ │ │ │ ├── Parent.hbm.xml │ │ │ │ │ └── Parent.java │ │ │ │ ├── connections │ │ │ │ │ ├── Other.java │ │ │ │ │ ├── Silly.hbm.xml │ │ │ │ │ └── Silly.java │ │ │ │ ├── criteria │ │ │ │ │ ├── Course.java │ │ │ │ │ ├── Enrolment.hbm.xml │ │ │ │ │ ├── Enrolment.java │ │ │ │ │ └── Student.java │ │ │ │ ├── cuk │ │ │ │ │ ├── Account.java │ │ │ │ │ ├── Address.java │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ └── Person.java │ │ │ │ ├── cut │ │ │ │ │ ├── Atypes.hbm.xml │ │ │ │ │ ├── MonetoryAmount.java │ │ │ │ │ ├── MonetoryAmountUserType.java │ │ │ │ │ ├── Transaction.hbm.xml │ │ │ │ │ └── Transaction.java │ │ │ │ ├── deletetransient │ │ │ │ │ ├── Address.java │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ └── Person.java │ │ │ │ ├── dialect │ │ │ │ │ └── functional │ │ │ │ │ │ └── cache │ │ │ │ │ │ ├── TestInterSystemsFunctionsClass.hbm.xml │ │ │ │ │ │ └── TestInterSystemsFunctionsClass.java │ │ │ │ ├── discriminator │ │ │ │ │ ├── Address.java │ │ │ │ │ ├── Customer.java │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ └── Person.java │ │ │ │ ├── dynamicentity │ │ │ │ │ ├── interceptor │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ ├── Company.java │ │ │ │ │ │ ├── Customer.hbm.xml │ │ │ │ │ │ ├── Customer.java │ │ │ │ │ │ └── Person.java │ │ │ │ │ └── tuplizer │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ ├── Company.java │ │ │ │ │ │ ├── Customer.hbm.xml │ │ │ │ │ │ ├── Customer.java │ │ │ │ │ │ └── Person.java │ │ │ │ ├── ecid │ │ │ │ │ ├── Course.hbm.xml │ │ │ │ │ ├── Course.java │ │ │ │ │ └── UniversityCourse.java │ │ │ │ ├── entitymode │ │ │ │ │ ├── dom4j │ │ │ │ │ │ └── many2one │ │ │ │ │ │ │ ├── Car.hbm.xml │ │ │ │ │ │ │ ├── Car.java │ │ │ │ │ │ │ ├── CarPart.java │ │ │ │ │ │ │ └── CarType.java │ │ │ │ │ └── multi │ │ │ │ │ │ ├── Stock.hbm.xml │ │ │ │ │ │ ├── Stock.java │ │ │ │ │ │ ├── Valuation.hbm.xml │ │ │ │ │ │ └── Valuation.java │ │ │ │ ├── exception │ │ │ │ │ ├── Group.hbm.xml │ │ │ │ │ ├── Group.java │ │ │ │ │ ├── User.hbm.xml │ │ │ │ │ └── User.java │ │ │ │ ├── extralazy │ │ │ │ │ ├── Document.java │ │ │ │ │ ├── Group.java │ │ │ │ │ ├── SessionAttribute.java │ │ │ │ │ ├── User.java │ │ │ │ │ └── UserGroup.hbm.xml │ │ │ │ ├── filter │ │ │ │ │ ├── Category.hbm.xml │ │ │ │ │ ├── Category.java │ │ │ │ │ ├── Department.hbm.xml │ │ │ │ │ ├── Department.java │ │ │ │ │ ├── LineItem.hbm.xml │ │ │ │ │ ├── LineItem.java │ │ │ │ │ ├── Order.hbm.xml │ │ │ │ │ ├── Order.java │ │ │ │ │ ├── Product.hbm.xml │ │ │ │ │ ├── Product.java │ │ │ │ │ ├── Salesperson.hbm.xml │ │ │ │ │ ├── Salesperson.java │ │ │ │ │ └── defs.hbm.xml │ │ │ │ ├── formulajoin │ │ │ │ │ ├── Detail.java │ │ │ │ │ ├── Master.hbm.xml │ │ │ │ │ └── Master.java │ │ │ │ ├── generatedkeys │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── MyChild.java │ │ │ │ │ │ ├── MyEntity.hbm.xml │ │ │ │ │ │ ├── MyEntity.java │ │ │ │ │ │ └── MySibling.java │ │ │ │ │ ├── select │ │ │ │ │ │ ├── MyEntity.hbm.xml │ │ │ │ │ │ └── MyEntity.java │ │ │ │ │ └── seqidentity │ │ │ │ │ │ ├── MyEntity.hbm.xml │ │ │ │ │ │ └── MyEntity.java │ │ │ │ ├── id │ │ │ │ │ ├── Car.hbm.xml │ │ │ │ │ ├── Car.java │ │ │ │ │ ├── Plane.hbm.xml │ │ │ │ │ ├── Plane.java │ │ │ │ │ ├── Product.hbm.xml │ │ │ │ │ ├── Product.java │ │ │ │ │ ├── Radio.hbm.xml │ │ │ │ │ └── Radio.java │ │ │ │ ├── idbag │ │ │ │ │ ├── Group.java │ │ │ │ │ ├── User.java │ │ │ │ │ └── UserGroup.hbm.xml │ │ │ │ ├── idclass │ │ │ │ │ ├── Customer.hbm.xml │ │ │ │ │ ├── Customer.java │ │ │ │ │ ├── CustomerId.java │ │ │ │ │ └── FavoriteCustomer.java │ │ │ │ ├── idprops │ │ │ │ │ ├── LineItem.java │ │ │ │ │ ├── LineItemPK.java │ │ │ │ │ ├── Mapping.hbm.xml │ │ │ │ │ ├── Order.java │ │ │ │ │ └── Person.java │ │ │ │ ├── immutable │ │ │ │ │ ├── Contract.java │ │ │ │ │ ├── ContractVariation.hbm.xml │ │ │ │ │ └── ContractVariation.java │ │ │ │ ├── insertordering │ │ │ │ │ ├── Group.java │ │ │ │ │ ├── Mapping.hbm.xml │ │ │ │ │ ├── Membership.java │ │ │ │ │ └── User.java │ │ │ │ ├── instrument │ │ │ │ │ └── domain │ │ │ │ │ │ ├── CustomBlobType.java │ │ │ │ │ │ ├── Document.java │ │ │ │ │ │ ├── Documents.hbm.xml │ │ │ │ │ │ ├── Entity.java │ │ │ │ │ │ ├── Folder.java │ │ │ │ │ │ ├── Owner.java │ │ │ │ │ │ ├── Problematic.hbm.xml │ │ │ │ │ │ └── Problematic.java │ │ │ │ ├── interceptor │ │ │ │ │ ├── CollectionInterceptor.java │ │ │ │ │ ├── Image.hbm.xml │ │ │ │ │ ├── Image.java │ │ │ │ │ ├── Log.java │ │ │ │ │ ├── PropertyInterceptor.java │ │ │ │ │ ├── StatefulInterceptor.java │ │ │ │ │ ├── User.hbm.xml │ │ │ │ │ └── User.java │ │ │ │ ├── interfaceproxy │ │ │ │ │ ├── Document.java │ │ │ │ │ ├── DocumentImpl.java │ │ │ │ │ ├── DocumentInterceptor.java │ │ │ │ │ ├── Folder.java │ │ │ │ │ ├── FolderImpl.java │ │ │ │ │ ├── Item.hbm.xml │ │ │ │ │ ├── Item.java │ │ │ │ │ ├── ItemImpl.java │ │ │ │ │ ├── SecureDocument.java │ │ │ │ │ └── SecureDocumentImpl.java │ │ │ │ ├── iterate │ │ │ │ │ ├── Item.hbm.xml │ │ │ │ │ └── Item.java │ │ │ │ ├── join │ │ │ │ │ ├── Customer.java │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ ├── Person.java │ │ │ │ │ └── User.java │ │ │ │ ├── joinedsubclass │ │ │ │ │ ├── Address.java │ │ │ │ │ ├── Customer.java │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ └── Person.java │ │ │ │ ├── joinfetch │ │ │ │ │ ├── Bid.java │ │ │ │ │ ├── Category.java │ │ │ │ │ ├── Comment.java │ │ │ │ │ ├── Group.java │ │ │ │ │ ├── Item.java │ │ │ │ │ ├── ItemBid.hbm.xml │ │ │ │ │ ├── User.java │ │ │ │ │ └── UserGroup.hbm.xml │ │ │ │ ├── jpa │ │ │ │ │ ├── Item.hbm.xml │ │ │ │ │ ├── Item.java │ │ │ │ │ ├── MyEntity.hbm.xml │ │ │ │ │ ├── MyEntity.java │ │ │ │ │ ├── MySubclassEntity.java │ │ │ │ │ ├── Part.hbm.xml │ │ │ │ │ ├── Part.java │ │ │ │ │ ├── cascade │ │ │ │ │ │ ├── Child.java │ │ │ │ │ │ ├── ChildAssigned.java │ │ │ │ │ │ ├── ChildInfo.java │ │ │ │ │ │ ├── ChildInfoAssigned.java │ │ │ │ │ │ ├── Other.java │ │ │ │ │ │ ├── OtherAssigned.java │ │ │ │ │ │ ├── Parent.java │ │ │ │ │ │ ├── ParentAssigned.java │ │ │ │ │ │ ├── ParentChild.hbm.xml │ │ │ │ │ │ ├── ParentInfo.java │ │ │ │ │ │ └── ParentInfoAssigned.java │ │ │ │ │ └── fetch │ │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ │ ├── Person.java │ │ │ │ │ │ └── Stay.java │ │ │ │ ├── lazycache │ │ │ │ │ ├── Document.java │ │ │ │ │ └── Documents.hbm.xml │ │ │ │ ├── lazyonetoone │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── Employment.java │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ └── Person.java │ │ │ │ ├── lob │ │ │ │ │ ├── LobHolder.java │ │ │ │ │ ├── LobMappings.hbm.xml │ │ │ │ │ └── SerializableData.java │ │ │ │ ├── manytomany │ │ │ │ │ ├── Group.java │ │ │ │ │ ├── User.java │ │ │ │ │ ├── UserGroup.hbm.xml │ │ │ │ │ └── ordered │ │ │ │ │ │ ├── Group.java │ │ │ │ │ │ ├── User.java │ │ │ │ │ │ └── UserGroup.hbm.xml │ │ │ │ ├── map │ │ │ │ │ ├── Group.java │ │ │ │ │ ├── SessionAttribute.java │ │ │ │ │ ├── User.java │ │ │ │ │ └── UserGroup.hbm.xml │ │ │ │ ├── mapcompelem │ │ │ │ │ ├── Item.java │ │ │ │ │ ├── Part.java │ │ │ │ │ ├── Product.java │ │ │ │ │ └── ProductPart.hbm.xml │ │ │ │ ├── mapelemformula │ │ │ │ │ ├── Group.java │ │ │ │ │ ├── User.java │ │ │ │ │ └── UserGroup.hbm.xml │ │ │ │ ├── mixed │ │ │ │ │ ├── Document.java │ │ │ │ │ ├── DocumentInterceptor.java │ │ │ │ │ ├── Folder.java │ │ │ │ │ ├── Item.hbm.xml │ │ │ │ │ ├── Item.java │ │ │ │ │ └── SecureDocument.java │ │ │ │ ├── naturalid │ │ │ │ │ ├── User.hbm.xml │ │ │ │ │ └── User.java │ │ │ │ ├── ondelete │ │ │ │ │ ├── Address.java │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ ├── Person.java │ │ │ │ │ └── Salesperson.java │ │ │ │ ├── onetomany │ │ │ │ │ ├── Child.java │ │ │ │ │ ├── Parent.hbm.xml │ │ │ │ │ └── Parent.java │ │ │ │ ├── onetoone │ │ │ │ │ ├── formula │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ │ └── Person.java │ │ │ │ │ ├── joined │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ ├── Entity.java │ │ │ │ │ │ ├── Org.java │ │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ │ └── Person.java │ │ │ │ │ ├── link │ │ │ │ │ │ ├── Customer.java │ │ │ │ │ │ ├── Employee.java │ │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ │ └── Person.java │ │ │ │ │ ├── optional │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ ├── Entity.java │ │ │ │ │ │ ├── Org.java │ │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ │ └── Person.java │ │ │ │ │ └── singletable │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ ├── Entity.java │ │ │ │ │ │ ├── Org.java │ │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ │ └── Person.java │ │ │ │ ├── ops │ │ │ │ │ ├── Address.java │ │ │ │ │ ├── Competition.hbm.xml │ │ │ │ │ ├── Competition.java │ │ │ │ │ ├── Competitor.java │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── Employer.hbm.xml │ │ │ │ │ ├── Employer.java │ │ │ │ │ ├── Node.hbm.xml │ │ │ │ │ ├── Node.java │ │ │ │ │ ├── NumberedNode.java │ │ │ │ │ ├── OneToOne.hbm.xml │ │ │ │ │ ├── OptLockEntity.hbm.xml │ │ │ │ │ ├── Person.java │ │ │ │ │ ├── PersonalDetails.java │ │ │ │ │ ├── TimestampedEntity.java │ │ │ │ │ └── VersionedEntity.java │ │ │ │ ├── optlock │ │ │ │ │ ├── Document.hbm.xml │ │ │ │ │ ├── Document.java │ │ │ │ │ └── PublicationDate.java │ │ │ │ ├── ordered │ │ │ │ │ ├── Search.hbm.xml │ │ │ │ │ └── Search.java │ │ │ │ ├── orphan │ │ │ │ │ ├── Mail.hbm.xml │ │ │ │ │ ├── Mail.java │ │ │ │ │ ├── Part.java │ │ │ │ │ ├── Product.hbm.xml │ │ │ │ │ ├── Product.java │ │ │ │ │ ├── User.hbm.xml │ │ │ │ │ └── User.java │ │ │ │ ├── pagination │ │ │ │ │ ├── DataPoint.hbm.xml │ │ │ │ │ └── DataPoint.java │ │ │ │ ├── propertyref │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── Account.java │ │ │ │ │ │ ├── Address.java │ │ │ │ │ │ ├── Group.java │ │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ │ └── Person.java │ │ │ │ │ ├── component │ │ │ │ │ │ ├── complete │ │ │ │ │ │ │ ├── Account.java │ │ │ │ │ │ │ ├── Identity.java │ │ │ │ │ │ │ ├── Mapping.hbm.xml │ │ │ │ │ │ │ └── Person.java │ │ │ │ │ │ └── partial │ │ │ │ │ │ │ ├── Account.java │ │ │ │ │ │ │ ├── Identity.java │ │ │ │ │ │ │ ├── Mapping.hbm.xml │ │ │ │ │ │ │ └── Person.java │ │ │ │ │ └── inheritence │ │ │ │ │ │ ├── discrim │ │ │ │ │ │ ├── Account.java │ │ │ │ │ │ ├── Customer.java │ │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ │ └── Person.java │ │ │ │ │ │ ├── joined │ │ │ │ │ │ ├── Account.java │ │ │ │ │ │ ├── BankAccount.java │ │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ │ └── Person.java │ │ │ │ │ │ └── union │ │ │ │ │ │ ├── Account.java │ │ │ │ │ │ ├── Customer.java │ │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ │ └── Person.java │ │ │ │ ├── proxy │ │ │ │ │ ├── Container.java │ │ │ │ │ ├── DataPoint.hbm.xml │ │ │ │ │ ├── DataPoint.java │ │ │ │ │ ├── Info.java │ │ │ │ │ └── Owner.java │ │ │ │ ├── querycache │ │ │ │ │ ├── Item.hbm.xml │ │ │ │ │ └── Item.java │ │ │ │ ├── readonly │ │ │ │ │ ├── DataPoint.hbm.xml │ │ │ │ │ └── DataPoint.java │ │ │ │ ├── reattachment │ │ │ │ │ ├── Child.java │ │ │ │ │ ├── Mappings.hbm.xml │ │ │ │ │ └── Parent.java │ │ │ │ ├── rowid │ │ │ │ │ ├── Point.hbm.xml │ │ │ │ │ ├── Point.java │ │ │ │ │ └── RowIdType.java │ │ │ │ ├── sorted │ │ │ │ │ ├── Search.hbm.xml │ │ │ │ │ └── Search.java │ │ │ │ ├── sql │ │ │ │ │ └── check │ │ │ │ │ │ ├── ExceptionCheckingEntity.java │ │ │ │ │ │ ├── ParamCheckingEntity.java │ │ │ │ │ │ └── oracle-mappings.hbm.xml │ │ │ │ ├── stateless │ │ │ │ │ ├── Document.hbm.xml │ │ │ │ │ ├── Document.java │ │ │ │ │ └── Paper.java │ │ │ │ ├── subselect │ │ │ │ │ ├── Alien.java │ │ │ │ │ ├── Being.java │ │ │ │ │ ├── Beings.hbm.xml │ │ │ │ │ └── Human.java │ │ │ │ ├── subselectfetch │ │ │ │ │ ├── Child.java │ │ │ │ │ ├── Parent.java │ │ │ │ │ └── ParentChild.hbm.xml │ │ │ │ ├── ternary │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── Site.java │ │ │ │ │ └── Ternary.hbm.xml │ │ │ │ ├── timestamp │ │ │ │ │ ├── Person.java │ │ │ │ │ ├── User.hbm.xml │ │ │ │ │ └── User.java │ │ │ │ ├── tool │ │ │ │ │ ├── Team.hbm.xml │ │ │ │ │ └── Team.java │ │ │ │ ├── typedmanytoone │ │ │ │ │ ├── Address.java │ │ │ │ │ ├── AddressId.java │ │ │ │ │ ├── Customer.hbm.xml │ │ │ │ │ └── Customer.java │ │ │ │ ├── typedonetoone │ │ │ │ │ ├── Address.java │ │ │ │ │ ├── AddressId.java │ │ │ │ │ ├── Customer.hbm.xml │ │ │ │ │ └── Customer.java │ │ │ │ ├── typeparameters │ │ │ │ │ ├── DefaultValueIntegerType.java │ │ │ │ │ ├── Typedef.hbm.xml │ │ │ │ │ ├── Widget.hbm.xml │ │ │ │ │ └── Widget.java │ │ │ │ ├── unconstrained │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ └── Person.java │ │ │ │ ├── unidir │ │ │ │ │ ├── Child.java │ │ │ │ │ ├── Parent.java │ │ │ │ │ └── ParentChild.hbm.xml │ │ │ │ ├── unionsubclass │ │ │ │ │ ├── Alien.java │ │ │ │ │ ├── Being.java │ │ │ │ │ ├── Beings.hbm.xml │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── Hive.java │ │ │ │ │ ├── Human.java │ │ │ │ │ ├── Location.java │ │ │ │ │ └── Thing.java │ │ │ │ ├── unionsubclass2 │ │ │ │ │ ├── Address.java │ │ │ │ │ ├── Customer.java │ │ │ │ │ ├── Employee.java │ │ │ │ │ ├── Person.hbm.xml │ │ │ │ │ └── Person.java │ │ │ │ ├── usercollection │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── Email.java │ │ │ │ │ │ ├── IMyList.java │ │ │ │ │ │ ├── MyList.java │ │ │ │ │ │ ├── MyListType.java │ │ │ │ │ │ ├── PersistentMyList.java │ │ │ │ │ │ ├── User.java │ │ │ │ │ │ └── UserPermissions.hbm.xml │ │ │ │ │ └── parameterized │ │ │ │ │ │ ├── DefaultableList.java │ │ │ │ │ │ ├── DefaultableListImpl.java │ │ │ │ │ │ ├── DefaultableListType.java │ │ │ │ │ │ ├── Entity.java │ │ │ │ │ │ ├── Mapping.hbm.xml │ │ │ │ │ │ └── PersistentDefaultableList.java │ │ │ │ ├── value │ │ │ │ │ └── type │ │ │ │ │ │ ├── basic │ │ │ │ │ │ ├── BasicValueTypes.hbm.xml │ │ │ │ │ │ └── BasicValueTypesClass.java │ │ │ │ │ │ └── collection │ │ │ │ │ │ ├── list │ │ │ │ │ │ ├── CollectionList.hbm.xml │ │ │ │ │ │ ├── CollectionList.java │ │ │ │ │ │ ├── CollectionListItem.hbm.xml │ │ │ │ │ │ └── CollectionListItem.java │ │ │ │ │ │ ├── map │ │ │ │ │ │ ├── CollectionListMap.hbm.xml │ │ │ │ │ │ ├── CollectionMap.hbm.xml │ │ │ │ │ │ ├── CollectionMap.java │ │ │ │ │ │ ├── CollectionMapItem.java │ │ │ │ │ │ ├── CollectionMapMany.hbm.xml │ │ │ │ │ │ └── CollectionMapMany.java │ │ │ │ │ │ └── set │ │ │ │ │ │ ├── CollectionSet.hbm.xml │ │ │ │ │ │ ├── CollectionSet.java │ │ │ │ │ │ ├── CollectionSetItem.hbm.xml │ │ │ │ │ │ └── CollectionSetItem.java │ │ │ │ ├── version │ │ │ │ │ ├── db │ │ │ │ │ │ ├── Group.java │ │ │ │ │ │ ├── Permission.java │ │ │ │ │ │ ├── User.hbm.xml │ │ │ │ │ │ └── User.java │ │ │ │ │ └── nodb │ │ │ │ │ │ ├── Person.java │ │ │ │ │ │ ├── PersonThing.hbm.xml │ │ │ │ │ │ ├── Task.java │ │ │ │ │ │ └── Thing.java │ │ │ │ └── where │ │ │ │ │ ├── File.hbm.xml │ │ │ │ │ ├── File.java │ │ │ │ │ └── NumericTrueFalseType.java │ │ │ ├── jpa │ │ │ │ └── springframework │ │ │ │ │ └── samples │ │ │ │ │ └── petclinic │ │ │ │ │ ├── BaseEntity.java │ │ │ │ │ ├── BaseSuperclass.java │ │ │ │ │ ├── NamedEntity.java │ │ │ │ │ ├── Owner.java │ │ │ │ │ ├── Person.java │ │ │ │ │ ├── Pet.java │ │ │ │ │ ├── PetType.java │ │ │ │ │ ├── Specialty.java │ │ │ │ │ ├── SuperOffspring.java │ │ │ │ │ ├── TestIdClass.java │ │ │ │ │ ├── Vet.java │ │ │ │ │ ├── Vets.java │ │ │ │ │ └── Visit.java │ │ │ ├── project │ │ │ │ ├── testLaunchCfg_0.launch │ │ │ │ └── testLaunchCfg_1.launch │ │ │ └── sample │ │ │ │ ├── AntCodeGenInternalProps_test1.xml │ │ │ │ ├── AntCodeGenInternalProps_test2.xml │ │ │ │ ├── AntCodeGenJpa_test1.xml │ │ │ │ ├── AntCodeGenJpa_test2.xml │ │ │ │ ├── AntCodeGenNullable_test1.xml │ │ │ │ ├── AntCodeGenNullable_test2.xml │ │ │ │ ├── AntCodeGenProps.hibernate.properties │ │ │ │ ├── AntCodeGenPropsInternal.hibernate.properties │ │ │ │ ├── AntCodeGenProps_test1.xml │ │ │ │ ├── AntCodeGenProps_test2.xml │ │ │ │ ├── AntCodeGenReveng_test1.xml │ │ │ │ ├── AntCodeGenReveng_test2.xml │ │ │ │ ├── AntCodeGen_test1.xml │ │ │ │ └── AntCodeGen_test2.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── orm │ │ │ └── test │ │ │ ├── AnnotationsMappingTest.java │ │ │ ├── BeanShellIntegrationTest.java │ │ │ ├── CodeGenXMLFactoryTest.java │ │ │ ├── ConsoleConfigurationTest.java │ │ │ ├── ContentAssistTest.java │ │ │ ├── CoreMappingTest.java │ │ │ ├── CriteriaEditorTest.java │ │ │ ├── DriverDeleteTest.java │ │ │ ├── ELTransformerTest.java │ │ │ ├── ExportImageActionTest.java │ │ │ ├── ExporterAttributesTest.java │ │ │ ├── ExporterTest.java │ │ │ ├── HBMInfoExtractorTest.java │ │ │ ├── HQLEditorPreferencePageTest.java │ │ │ ├── HQLEditorTest.java │ │ │ ├── JPAMapMockTest.java │ │ │ ├── JavaFormattingTest.java │ │ │ ├── JpaMappingTest.java │ │ │ ├── KnownConfigurationsTest.java │ │ │ ├── OrmDiagramTest.java │ │ │ ├── PerspectiveTest.java │ │ │ ├── ProjectUtilsTest.java │ │ │ ├── QueryPageViewerTest.java │ │ │ ├── QueryParametersTest.java │ │ │ ├── RefactoringTest.java │ │ │ ├── SanityTest.java │ │ │ ├── mapping │ │ │ └── MappingTest.java │ │ │ └── utils │ │ │ ├── AnnotationsMappingTestHelper.java │ │ │ ├── CfgXmlFileHelper.java │ │ │ ├── ConsoleConfigUtils.java │ │ │ ├── ConsoleTestMessages.properties │ │ │ ├── CoreMappingTestHelper.java │ │ │ ├── Customization.java │ │ │ ├── GarbageCollectionUtil.java │ │ │ ├── HibernateConsoleTestHelper.java │ │ │ ├── JpaMappingTestHelper.java │ │ │ ├── MappingTestHelper.java │ │ │ ├── ResourceReadUtils.java │ │ │ ├── TestConsoleConfigurationPreferences.java │ │ │ ├── TestConsoleMessages.java │ │ │ ├── TestLaunchConfig.java │ │ │ ├── TestWorkingCopy.java │ │ │ ├── Utils.java │ │ │ └── project │ │ │ ├── FilesTransfer.java │ │ │ ├── LaunchConfigTestProject.java │ │ │ ├── ProjectHelper.java │ │ │ ├── SimpleTestProject.java │ │ │ ├── SimpleTestProjectWithMapping.java │ │ │ └── TestProject.java │ └── pom.xml │ ├── pom.xml │ ├── runtime │ ├── org.jboss.tools.hibernate.orm.runtime.common.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── orm │ │ │ └── runtime │ │ │ └── common │ │ │ └── GenericFacadeFactoryTest.java │ ├── org.jboss.tools.hibernate.orm.runtime.exp.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── orm │ │ │ └── runtime │ │ │ └── exp │ │ │ ├── VersionTest.java │ │ │ └── internal │ │ │ ├── IArtifactCollectorTest.java │ │ │ ├── ICfg2HbmToolTest.java │ │ │ ├── IClassMetadataTest.java │ │ │ ├── ICollectionMetadataTest.java │ │ │ ├── IColumnTest.java │ │ │ ├── IConfigurationTest.java │ │ │ ├── ICriteriaTest.java │ │ │ ├── IEnvironmentTest.java │ │ │ ├── IExporterTest.java │ │ │ ├── IForeignKeyTest.java │ │ │ ├── IGenericExporterTest.java │ │ │ ├── IHQLCodeAssistTest.java │ │ │ ├── IHQLCompletionHandlerTest.java │ │ │ ├── IHQLCompletionProposalTest.java │ │ │ ├── IHbm2DDLExporterTest.java │ │ │ ├── IHibernateMappingExporterTest.java │ │ │ ├── IJoinTest.java │ │ │ ├── INamingStrategyTest.java │ │ │ ├── IOverrideRepositoryTest.java │ │ │ ├── IPersistentClassTest.java │ │ │ ├── IPrimaryKeyTest.java │ │ │ ├── IPropertyTest.java │ │ │ ├── IQueryExporterTest.java │ │ │ ├── IQueryTest.java │ │ │ ├── IReverseEngineeringSettingsTest.java │ │ │ ├── IReverseEngineeringStrategyTest.java │ │ │ ├── ISchemaExportTest.java │ │ │ ├── ISessionFactoryTest.java │ │ │ ├── ISessionTest.java │ │ │ ├── ITableFilterTest.java │ │ │ ├── ITableTest.java │ │ │ ├── ITypeFactoryTest.java │ │ │ ├── ITypeTest.java │ │ │ ├── IValueTest.java │ │ │ └── ServiceImplTest.java │ ├── org.jboss.tools.hibernate.orm.runtime.v_6_2.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── orm │ │ │ └── runtime │ │ │ └── v_6_2 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── IArtifactCollectorTest.java │ │ │ ├── ICfg2HbmToolTest.java │ │ │ ├── IClassMetadataTest.java │ │ │ ├── ICollectionMetadataTest.java │ │ │ ├── IColumnTest.java │ │ │ ├── IConfigurationTest.java │ │ │ ├── ICriteriaTest.java │ │ │ ├── IEnvironmentTest.java │ │ │ ├── IExporterTest.java │ │ │ ├── IForeignKeyTest.java │ │ │ ├── IGenericExporterTest.java │ │ │ ├── IHQLCodeAssistTest.java │ │ │ ├── IHQLCompletionHandlerTest.java │ │ │ ├── IHQLCompletionProposalTest.java │ │ │ ├── IHbm2DDLExporterTest.java │ │ │ ├── IHibernateMappingExporterTest.java │ │ │ ├── IJoinTest.java │ │ │ ├── INamingStrategyTest.java │ │ │ ├── IOverrideRepositoryTest.java │ │ │ ├── IPersistentClassTest.java │ │ │ ├── IPrimaryKeyTest.java │ │ │ ├── IPropertyTest.java │ │ │ ├── IQueryExporterTest.java │ │ │ ├── IQueryTest.java │ │ │ ├── IReverseEngineeringSettingsTest.java │ │ │ ├── IReverseEngineeringStrategyTest.java │ │ │ ├── ISchemaExportTest.java │ │ │ ├── ISessionFactoryTest.java │ │ │ ├── ISessionTest.java │ │ │ ├── ITableFilterTest.java │ │ │ ├── ITableTest.java │ │ │ ├── ITypeFactoryTest.java │ │ │ ├── ITypeTest.java │ │ │ ├── IValueTest.java │ │ │ ├── ServiceImplTest.java │ │ │ └── VersionTest.java │ ├── org.jboss.tools.hibernate.orm.runtime.v_6_3.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── orm │ │ │ └── runtime │ │ │ └── v_6_3 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── IArtifactCollectorTest.java │ │ │ ├── ICfg2HbmToolTest.java │ │ │ ├── IClassMetadataTest.java │ │ │ ├── ICollectionMetadataTest.java │ │ │ ├── IColumnTest.java │ │ │ ├── IConfigurationTest.java │ │ │ ├── ICriteriaTest.java │ │ │ ├── IEnvironmentTest.java │ │ │ ├── IExporterTest.java │ │ │ ├── IForeignKeyTest.java │ │ │ ├── IGenericExporterTest.java │ │ │ ├── IHQLCodeAssistTest.java │ │ │ ├── IHQLCompletionHandlerTest.java │ │ │ ├── IHQLCompletionProposalTest.java │ │ │ ├── IHbm2DDLExporterTest.java │ │ │ ├── IHibernateMappingExporterTest.java │ │ │ ├── IJoinTest.java │ │ │ ├── INamingStrategyTest.java │ │ │ ├── IOverrideRepositoryTest.java │ │ │ ├── IPersistentClassTest.java │ │ │ ├── IPrimaryKeyTest.java │ │ │ ├── IPropertyTest.java │ │ │ ├── IQueryExporterTest.java │ │ │ ├── IQueryTest.java │ │ │ ├── IReverseEngineeringSettingsTest.java │ │ │ ├── IReverseEngineeringStrategyTest.java │ │ │ ├── ISchemaExportTest.java │ │ │ ├── ISessionFactoryTest.java │ │ │ ├── ISessionTest.java │ │ │ ├── ITableFilterTest.java │ │ │ ├── ITableTest.java │ │ │ ├── ITypeFactoryTest.java │ │ │ ├── ITypeTest.java │ │ │ ├── IValueTest.java │ │ │ ├── ServiceImplTest.java │ │ │ └── VersionTest.java │ ├── org.jboss.tools.hibernate.orm.runtime.v_6_4.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── orm │ │ │ └── runtime │ │ │ └── v_6_4 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── IArtifactCollectorTest.java │ │ │ ├── ICfg2HbmToolTest.java │ │ │ ├── IClassMetadataTest.java │ │ │ ├── ICollectionMetadataTest.java │ │ │ ├── IColumnTest.java │ │ │ ├── IConfigurationTest.java │ │ │ ├── ICriteriaTest.java │ │ │ ├── IEnvironmentTest.java │ │ │ ├── IExporterTest.java │ │ │ ├── IForeignKeyTest.java │ │ │ ├── IGenericExporterTest.java │ │ │ ├── IHQLCodeAssistTest.java │ │ │ ├── IHQLCompletionHandlerTest.java │ │ │ ├── IHQLCompletionProposalTest.java │ │ │ ├── IHbm2DDLExporterTest.java │ │ │ ├── IHibernateMappingExporterTest.java │ │ │ ├── IJoinTest.java │ │ │ ├── INamingStrategyTest.java │ │ │ ├── IOverrideRepositoryTest.java │ │ │ ├── IPersistentClassTest.java │ │ │ ├── IPrimaryKeyTest.java │ │ │ ├── IPropertyTest.java │ │ │ ├── IQueryExporterTest.java │ │ │ ├── IQueryTest.java │ │ │ ├── IReverseEngineeringSettingsTest.java │ │ │ ├── IReverseEngineeringStrategyTest.java │ │ │ ├── ISchemaExportTest.java │ │ │ ├── ISessionFactoryTest.java │ │ │ ├── ISessionTest.java │ │ │ ├── ITableFilterTest.java │ │ │ ├── ITableTest.java │ │ │ ├── ITypeFactoryTest.java │ │ │ ├── ITypeTest.java │ │ │ ├── IValueTest.java │ │ │ ├── ServiceImplTest.java │ │ │ └── VersionTest.java │ ├── org.jboss.tools.hibernate.orm.runtime.v_6_5.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── orm │ │ │ └── runtime │ │ │ └── v_6_5 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── IArtifactCollectorTest.java │ │ │ ├── ICfg2HbmToolTest.java │ │ │ ├── IClassMetadataTest.java │ │ │ ├── ICollectionMetadataTest.java │ │ │ ├── IColumnTest.java │ │ │ ├── IConfigurationTest.java │ │ │ ├── ICriteriaTest.java │ │ │ ├── IEnvironmentTest.java │ │ │ ├── IExporterTest.java │ │ │ ├── IForeignKeyTest.java │ │ │ ├── IGenericExporterTest.java │ │ │ ├── IHQLCodeAssistTest.java │ │ │ ├── IHQLCompletionHandlerTest.java │ │ │ ├── IHQLCompletionProposalTest.java │ │ │ ├── IHbm2DDLExporterTest.java │ │ │ ├── IHibernateMappingExporterTest.java │ │ │ ├── IJoinTest.java │ │ │ ├── INamingStrategyTest.java │ │ │ ├── IOverrideRepositoryTest.java │ │ │ ├── IPersistentClassTest.java │ │ │ ├── IPrimaryKeyTest.java │ │ │ ├── IPropertyTest.java │ │ │ ├── IQueryExporterTest.java │ │ │ ├── IQueryTest.java │ │ │ ├── IReverseEngineeringSettingsTest.java │ │ │ ├── IReverseEngineeringStrategyTest.java │ │ │ ├── ISchemaExportTest.java │ │ │ ├── ISessionFactoryTest.java │ │ │ ├── ISessionTest.java │ │ │ ├── ITableFilterTest.java │ │ │ ├── ITypeFactoryTest.java │ │ │ ├── ITypeTest.java │ │ │ ├── IValueTest.java │ │ │ ├── ServiceImplTest.java │ │ │ └── VersionTest.java │ ├── org.jboss.tools.hibernate.orm.runtime.v_6_6.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── orm │ │ │ └── runtime │ │ │ └── v_6_6 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── IArtifactCollectorTest.java │ │ │ ├── ICfg2HbmToolTest.java │ │ │ ├── IClassMetadataTest.java │ │ │ ├── ICollectionMetadataTest.java │ │ │ ├── IColumnTest.java │ │ │ ├── IConfigurationTest.java │ │ │ ├── ICriteriaTest.java │ │ │ ├── IEnvironmentTest.java │ │ │ ├── IExporterTest.java │ │ │ ├── IForeignKeyTest.java │ │ │ ├── IGenericExporterTest.java │ │ │ ├── IHQLCodeAssistTest.java │ │ │ ├── IHQLCompletionHandlerTest.java │ │ │ ├── IHQLCompletionProposalTest.java │ │ │ ├── IHbm2DDLExporterTest.java │ │ │ ├── IHibernateMappingExporterTest.java │ │ │ ├── IJoinTest.java │ │ │ ├── INamingStrategyTest.java │ │ │ ├── IOverrideRepositoryTest.java │ │ │ ├── IPersistentClassTest.java │ │ │ ├── IPrimaryKeyTest.java │ │ │ ├── IPropertyTest.java │ │ │ ├── IQueryExporterTest.java │ │ │ ├── IQueryTest.java │ │ │ ├── IReverseEngineeringSettingsTest.java │ │ │ ├── IReverseEngineeringStrategyTest.java │ │ │ ├── ISchemaExportTest.java │ │ │ ├── ISessionFactoryTest.java │ │ │ ├── ISessionTest.java │ │ │ ├── ITableFilterTest.java │ │ │ ├── ITableTest.java │ │ │ ├── ITypeFactoryTest.java │ │ │ ├── ITypeTest.java │ │ │ ├── IValueTest.java │ │ │ ├── ServiceImplTest.java │ │ │ └── VersionTest.java │ ├── org.jboss.tools.hibernate.orm.runtime.v_7_0.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── orm │ │ │ └── runtime │ │ │ └── v_7_0 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── IArtifactCollectorTest.java │ │ │ ├── ICfg2HbmToolTest.java │ │ │ ├── IClassMetadataTest.java │ │ │ ├── ICollectionMetadataTest.java │ │ │ ├── IColumnTest.java │ │ │ ├── IConfigurationTest.java │ │ │ ├── ICriteriaTest.java │ │ │ ├── IEnvironmentTest.java │ │ │ ├── IExporterTest.java │ │ │ ├── IForeignKeyTest.java │ │ │ ├── IGenericExporterTest.java │ │ │ ├── IHQLCodeAssistTest.java │ │ │ ├── IHQLCompletionHandlerTest.java │ │ │ ├── IHQLCompletionProposalTest.java │ │ │ ├── IHbm2DDLExporterTest.java │ │ │ ├── IHibernateMappingExporterTest.java │ │ │ ├── IJoinTest.java │ │ │ ├── INamingStrategyTest.java │ │ │ ├── IOverrideRepositoryTest.java │ │ │ ├── IPersistentClassTest.java │ │ │ ├── IPrimaryKeyTest.java │ │ │ ├── IPropertyTest.java │ │ │ ├── IQueryExporterTest.java │ │ │ ├── IQueryTest.java │ │ │ ├── IReverseEngineeringSettingsTest.java │ │ │ ├── IReverseEngineeringStrategyTest.java │ │ │ ├── ISchemaExportTest.java │ │ │ ├── ISessionFactoryTest.java │ │ │ ├── ISessionTest.java │ │ │ ├── ITableFilterTest.java │ │ │ ├── ITableTest.java │ │ │ ├── ITypeFactoryTest.java │ │ │ ├── ITypeTest.java │ │ │ ├── IValueTest.java │ │ │ ├── ServiceImplTest.java │ │ │ └── VersionTest.java │ ├── org.jboss.tools.hibernate.runtime.spi.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── runtime │ │ │ └── spi │ │ │ └── RuntimeServiceManagerTest.java │ ├── org.jboss.tools.hibernate.runtime.v_3_5.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── runtime │ │ │ └── v_3_5 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── VersionTest.java │ │ │ └── internal │ │ │ ├── ArtifactCollectorFacadeTest.java │ │ │ ├── Cfg2HbmToolFacadeTest.java │ │ │ ├── ClassMetadataFacadeTest.java │ │ │ ├── CollectionMetadataFacadeTest.java │ │ │ ├── ColumnFacadeTest.java │ │ │ ├── ConfigurationFacadeTest.java │ │ │ ├── CriteriaFacadeTest.java │ │ │ ├── EnvironmentFacadeTest.java │ │ │ ├── ExporterFacadeTest.java │ │ │ ├── FacadeFactoryTest.java │ │ │ ├── ForeignKeyFacadeTest.java │ │ │ ├── GenericExporterFacadeTest.java │ │ │ ├── HQLCodeAssistFacadeTest.java │ │ │ ├── HQLCompletionProposalFacadeTest.java │ │ │ ├── Hbm2DDLExporterFacadeTest.java │ │ │ ├── HibernateMappingExporterExtensionTest.java │ │ │ ├── HibernateMappingExporterFacadeTest.java │ │ │ ├── JoinFacadeTest.java │ │ │ ├── NamingStrategyFacadeTest.java │ │ │ ├── OverrideRepositoryFacadeTest.java │ │ │ ├── PersistentClassFacadeTest.java │ │ │ ├── PrimaryKeyFacadeTest.java │ │ │ ├── PropertyFacadeTest.java │ │ │ ├── QueryExporterFacadeTest.java │ │ │ ├── QueryFacadeTest.java │ │ │ ├── ReverseEngineeringSettingsFacadeTest.java │ │ │ ├── ReverseEngineeringStrategyFacadeTest.java │ │ │ ├── SchemaExportFacadeTest.java │ │ │ ├── ServiceImplTest.java │ │ │ ├── SessionFacadeTest.java │ │ │ ├── SessionFactoryFacadeTest.java │ │ │ ├── SpecialRootClassFacadeTest.java │ │ │ ├── TableFacadeTest.java │ │ │ ├── TableFilterFacadeTest.java │ │ │ ├── TypeFacadeTest.java │ │ │ ├── TypeFactoryFacadeTest.java │ │ │ └── ValueFacadeTest.java │ ├── org.jboss.tools.hibernate.runtime.v_3_6.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── runtime │ │ │ └── v_3_6 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── VersionTest.java │ │ │ └── internal │ │ │ ├── ArtifactCollectorFacadeTest.java │ │ │ ├── Cfg2HbmToolFacadeTest.java │ │ │ ├── ClassMetadataFacadeTest.java │ │ │ ├── CollectionMetadataFacadeTest.java │ │ │ ├── ColumnFacadeTest.java │ │ │ ├── ConfigurationFacadeTest.java │ │ │ ├── CriteriaFacadeTest.java │ │ │ ├── EnvironmentFacadeTest.java │ │ │ ├── ExporterFacadeTest.java │ │ │ ├── FacadeFactoryTest.java │ │ │ ├── ForeignKeyFacadeTest.java │ │ │ ├── GenericExporterFacadeTest.java │ │ │ ├── HQLCodeAssistFacadeTest.java │ │ │ ├── HQLCompletionProposalFacadeTest.java │ │ │ ├── Hbm2DDLExporterFacadeTest.java │ │ │ ├── HibernateMappingExporterExtensionTest.java │ │ │ ├── HibernateMappingExporterFacadeTest.java │ │ │ ├── JoinFacadeTest.java │ │ │ ├── NamingStrategyFacadeTest.java │ │ │ ├── OverrideRepositoryFacadeTest.java │ │ │ ├── PersistentClassFacadeTest.java │ │ │ ├── PrimaryKeyFacadeTest.java │ │ │ ├── PropertyFacadeTest.java │ │ │ ├── QueryExporterFacadeTest.java │ │ │ ├── QueryFacadeTest.java │ │ │ ├── ReverseEngineeringSettingsFacadeTest.java │ │ │ ├── ReverseEngineeringStrategyFacadeTest.java │ │ │ ├── SchemaExportFacadeTest.java │ │ │ ├── ServiceImplTest.java │ │ │ ├── SessionFacadeTest.java │ │ │ ├── SessionFactoryFacadeTest.java │ │ │ ├── SpecialRootClassFacadeTest.java │ │ │ ├── TableFacadeTest.java │ │ │ ├── TableFilterFacadeTest.java │ │ │ ├── TypeFacadeTest.java │ │ │ ├── TypeFactoryFacadeTest.java │ │ │ └── ValueFacadeTest.java │ ├── org.jboss.tools.hibernate.runtime.v_4_0.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── runtime │ │ │ └── v_4_0 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── VersionTest.java │ │ │ └── internal │ │ │ ├── ArtifactCollectorFacadeTest.java │ │ │ ├── Cfg2HbmToolFacadeTest.java │ │ │ ├── ClassMetadataFacadeTest.java │ │ │ ├── CollectionMetadataFacadeTest.java │ │ │ ├── ColumnFacadeTest.java │ │ │ ├── ConfigurationFacadeTest.java │ │ │ ├── CriteriaFacadeTest.java │ │ │ ├── EnvironmentFacadeTest.java │ │ │ ├── ExporterFacadeTest.java │ │ │ ├── FacadeFactoryTest.java │ │ │ ├── ForeignKeyFacadeTest.java │ │ │ ├── GenericExporterFacadeTest.java │ │ │ ├── HQLCodeAssistFacadeTest.java │ │ │ ├── HQLCompletionProposalFacadeTest.java │ │ │ ├── Hbm2DDLExporterFacadeTest.java │ │ │ ├── HibernateMappingExporterExtensionTest.java │ │ │ ├── HibernateMappingExporterFacadeTest.java │ │ │ ├── JoinFacadeTest.java │ │ │ ├── NamingStrategyFacadeTest.java │ │ │ ├── OverrideRepositoryFacadeTest.java │ │ │ ├── PersistentClassFacadeTest.java │ │ │ ├── PrimaryKeyFacadeTest.java │ │ │ ├── PropertyFacadeTest.java │ │ │ ├── QueryExporterFacadeTest.java │ │ │ ├── QueryFacadeTest.java │ │ │ ├── ReverseEngineeringSettingsFacadeTest.java │ │ │ ├── ReverseEngineeringStrategyFacadeTest.java │ │ │ ├── SchemaExportFacadeTest.java │ │ │ ├── ServiceImplTest.java │ │ │ ├── SessionFacadeTest.java │ │ │ ├── SessionFactoryFacadeTest.java │ │ │ ├── SpecialRootClassFacadeTest.java │ │ │ ├── TableFacadeTest.java │ │ │ ├── TableFilterFacadeTest.java │ │ │ ├── TypeFacadeTest.java │ │ │ ├── TypeFactoryFacadeTest.java │ │ │ └── ValueFacadeTest.java │ ├── org.jboss.tools.hibernate.runtime.v_4_3.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── runtime │ │ │ └── v_4_3 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── VersionTest.java │ │ │ └── internal │ │ │ ├── ArtifactCollectorFacadeTest.java │ │ │ ├── Cfg2HbmToolFacadeTest.java │ │ │ ├── ClassMetadataFacadeTest.java │ │ │ ├── CollectionMetadataFacadeTest.java │ │ │ ├── ColumnFacadeTest.java │ │ │ ├── ConfigurationFacadeTest.java │ │ │ ├── CriteriaFacadeTest.java │ │ │ ├── EnvironmentFacadeTest.java │ │ │ ├── ExporterFacadeTest.java │ │ │ ├── FacadeFactoryTest.java │ │ │ ├── ForeignKeyFacadeTest.java │ │ │ ├── GenericExporterFacadeTest.java │ │ │ ├── HQLCodeAssistFacadeTest.java │ │ │ ├── HQLCompletionProposalFacadeTest.java │ │ │ ├── Hbm2DDLExporterFacadeTest.java │ │ │ ├── HibernateMappingExporterExtensionTest.java │ │ │ ├── HibernateMappingExporterFacadeTest.java │ │ │ ├── JoinFacadeTest.java │ │ │ ├── NamingStrategyFacadeTest.java │ │ │ ├── OverrideRepositoryFacadeTest.java │ │ │ ├── PersistentClassFacadeTest.java │ │ │ ├── PrimaryKeyFacadeTest.java │ │ │ ├── PropertyFacadeTest.java │ │ │ ├── QueryExporterFacadeTest.java │ │ │ ├── QueryFacadeTest.java │ │ │ ├── ReverseEngineeringSettingsFacadeTest.java │ │ │ ├── ReverseEngineeringStrategyFacadeTest.java │ │ │ ├── SchemaExportFacadeTest.java │ │ │ ├── ServiceImplTest.java │ │ │ ├── SessionFacadeTest.java │ │ │ ├── SessionFactoryFacadeTest.java │ │ │ ├── SpecialRootClassFacadeTest.java │ │ │ ├── TableFacadeTest.java │ │ │ ├── TableFilterFacadeTest.java │ │ │ ├── TypeFacadeTest.java │ │ │ ├── TypeFactoryFacadeTest.java │ │ │ └── ValueFacadeTest.java │ ├── org.jboss.tools.hibernate.runtime.v_5_0.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── runtime │ │ │ └── v_5_0 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── VersionTest.java │ │ │ └── internal │ │ │ ├── ArtifactCollectorFacadeTest.java │ │ │ ├── Cfg2HbmToolFacadeTest.java │ │ │ ├── ClassMetadataFacadeTest.java │ │ │ ├── CollectionMetadataFacadeTest.java │ │ │ ├── ColumnFacadeTest.java │ │ │ ├── ConfigurationFacadeTest.java │ │ │ ├── CriteriaFacadeTest.java │ │ │ ├── EnvironmentFacadeTest.java │ │ │ ├── ExporterFacadeTest.java │ │ │ ├── FacadeFactoryTest.java │ │ │ ├── ForeignKeyFacadeTest.java │ │ │ ├── GenericExporterFacadeTest.java │ │ │ ├── HQLCodeAssistFacadeTest.java │ │ │ ├── HQLCompletionProposalFacadeTest.java │ │ │ ├── Hbm2DDLExporterFacadeTest.java │ │ │ ├── HibernateMappingExporterExtensionTest.java │ │ │ ├── HibernateMappingExporterFacadeTest.java │ │ │ ├── JoinFacadeTest.java │ │ │ ├── NamingStrategyFacadeTest.java │ │ │ ├── OverrideRepositoryFacadeTest.java │ │ │ ├── PersistentClassFacadeTest.java │ │ │ ├── PrimaryKeyFacadeTest.java │ │ │ ├── PropertyFacadeTest.java │ │ │ ├── QueryExporterFacadeTest.java │ │ │ ├── QueryFacadeTest.java │ │ │ ├── ReverseEngineeringSettingsFacadeTest.java │ │ │ ├── ReverseEngineeringStrategyFacadeTest.java │ │ │ ├── SchemaExportFacadeTest.java │ │ │ ├── ServiceImplTest.java │ │ │ ├── SessionFacadeTest.java │ │ │ ├── SessionFactoryFacadeTest.java │ │ │ ├── SpecialRootClassFacadeTest.java │ │ │ ├── TableFacadeTest.java │ │ │ ├── TableFilterFacadeTest.java │ │ │ ├── TypeFacadeTest.java │ │ │ ├── TypeFactoryFacadeTest.java │ │ │ ├── ValueFacadeTest.java │ │ │ └── util │ │ │ └── DummyMetadataImplementorTest.java │ ├── org.jboss.tools.hibernate.runtime.v_5_1.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── runtime │ │ │ └── v_5_1 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── VersionTest.java │ │ │ └── internal │ │ │ ├── ArtifactCollectorFacadeTest.java │ │ │ ├── Cfg2HbmToolFacadeTest.java │ │ │ ├── ClassMetadataFacadeTest.java │ │ │ ├── CollectionMetadataFacadeTest.java │ │ │ ├── ColumnFacadeTest.java │ │ │ ├── ConfigurationFacadeTest.java │ │ │ ├── CriteriaFacadeTest.java │ │ │ ├── EnvironmentFacadeTest.java │ │ │ ├── ExporterFacadeTest.java │ │ │ ├── FacadeFactoryTest.java │ │ │ ├── ForeignKeyFacadeTest.java │ │ │ ├── GenericExporterFacadeTest.java │ │ │ ├── HQLCodeAssistFacadeTest.java │ │ │ ├── HQLCompletionProposalFacadeTest.java │ │ │ ├── Hbm2DDLExporterFacadeTest.java │ │ │ ├── HibernateMappingExporterExtensionTest.java │ │ │ ├── HibernateMappingExporterFacadeTest.java │ │ │ ├── JoinFacadeTest.java │ │ │ ├── NamingStrategyFacadeTest.java │ │ │ ├── OverrideRepositoryFacadeTest.java │ │ │ ├── PersistentClassFacadeTest.java │ │ │ ├── PrimaryKeyFacadeTest.java │ │ │ ├── PropertyFacadeTest.java │ │ │ ├── QueryExporterFacadeTest.java │ │ │ ├── QueryFacadeTest.java │ │ │ ├── ReverseEngineeringSettingsFacadeTest.java │ │ │ ├── ReverseEngineeringStrategyFacadeTest.java │ │ │ ├── SchemaExportFacadeTest.java │ │ │ ├── ServiceImplTest.java │ │ │ ├── SessionFacadeTest.java │ │ │ ├── SessionFactoryFacadeTest.java │ │ │ ├── SpecialRootClassFacadeTest.java │ │ │ ├── TableFacadeTest.java │ │ │ ├── TableFilterFacadeTest.java │ │ │ ├── TypeFacadeTest.java │ │ │ ├── TypeFactoryFacadeTest.java │ │ │ ├── ValueFacadeTest.java │ │ │ └── util │ │ │ └── DummyMetadataImplementorTest.java │ ├── org.jboss.tools.hibernate.runtime.v_5_2.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── runtime │ │ │ └── v_5_2 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── VersionTest.java │ │ │ └── internal │ │ │ ├── ArtifactCollectorFacadeTest.java │ │ │ ├── Cfg2HbmToolFacadeTest.java │ │ │ ├── ClassMetadataFacadeTest.java │ │ │ ├── CollectionMetadataFacadeTest.java │ │ │ ├── ColumnFacadeTest.java │ │ │ ├── ConfigurationFacadeTest.java │ │ │ ├── CriteriaFacadeTest.java │ │ │ ├── EnvironmentFacadeTest.java │ │ │ ├── ExporterFacadeTest.java │ │ │ ├── FacadeFactoryTest.java │ │ │ ├── ForeignKeyFacadeTest.java │ │ │ ├── GenericExporterFacadeTest.java │ │ │ ├── HQLCodeAssistFacadeTest.java │ │ │ ├── HQLCompletionProposalFacadeTest.java │ │ │ ├── Hbm2DDLExporterFacadeTest.java │ │ │ ├── HibernateMappingExporterExtensionTest.java │ │ │ ├── HibernateMappingExporterFacadeTest.java │ │ │ ├── JoinFacadeTest.java │ │ │ ├── NamingStrategyFacadeTest.java │ │ │ ├── OverrideRepositoryFacadeTest.java │ │ │ ├── PersistentClassFacadeTest.java │ │ │ ├── PrimaryKeyFacadeTest.java │ │ │ ├── PropertyFacadeTest.java │ │ │ ├── QueryExporterFacadeTest.java │ │ │ ├── QueryFacadeTest.java │ │ │ ├── ReverseEngineeringSettingsFacadeTest.java │ │ │ ├── ReverseEngineeringStrategyFacadeTest.java │ │ │ ├── SchemaExportFacadeTest.java │ │ │ ├── ServiceImplTest.java │ │ │ ├── SessionFacadeTest.java │ │ │ ├── SessionFactoryFacadeTest.java │ │ │ ├── SpecialRootClassFacadeTest.java │ │ │ ├── TableFacadeTest.java │ │ │ ├── TableFilterFacadeTest.java │ │ │ ├── TypeFacadeTest.java │ │ │ ├── TypeFactoryFacadeTest.java │ │ │ ├── ValueFacadeTest.java │ │ │ └── util │ │ │ └── DummyMetadataImplementorTest.java │ ├── org.jboss.tools.hibernate.runtime.v_5_3.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── runtime │ │ │ └── v_5_3 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── VersionTest.java │ │ │ └── internal │ │ │ ├── ArtifactCollectorFacadeTest.java │ │ │ ├── Cfg2HbmToolFacadeTest.java │ │ │ ├── ClassMetadataFacadeTest.java │ │ │ ├── CollectionMetadataFacadeTest.java │ │ │ ├── ColumnFacadeTest.java │ │ │ ├── ConfigurationFacadeTest.java │ │ │ ├── CriteriaFacadeTest.java │ │ │ ├── EnvironmentFacadeTest.java │ │ │ ├── ExporterFacadeTest.java │ │ │ ├── FacadeFactoryTest.java │ │ │ ├── ForeignKeyFacadeTest.java │ │ │ ├── GenericExporterFacadeTest.java │ │ │ ├── HQLCodeAssistFacadeTest.java │ │ │ ├── HQLCompletionProposalFacadeTest.java │ │ │ ├── Hbm2DDLExporterFacadeTest.java │ │ │ ├── HibernateMappingExporterExtensionTest.java │ │ │ ├── HibernateMappingExporterFacadeTest.java │ │ │ ├── JoinFacadeTest.java │ │ │ ├── NamingStrategyFacadeTest.java │ │ │ ├── OverrideRepositoryFacadeTest.java │ │ │ ├── PersistentClassFacadeTest.java │ │ │ ├── PrimaryKeyFacadeTest.java │ │ │ ├── PropertyFacadeTest.java │ │ │ ├── QueryExporterFacadeTest.java │ │ │ ├── QueryFacadeTest.java │ │ │ ├── ReverseEngineeringSettingsFacadeTest.java │ │ │ ├── ReverseEngineeringStrategyFacadeTest.java │ │ │ ├── SchemaExportFacadeTest.java │ │ │ ├── ServiceImplTest.java │ │ │ ├── SessionFacadeTest.java │ │ │ ├── SessionFactoryFacadeTest.java │ │ │ ├── SpecialRootClassFacadeTest.java │ │ │ ├── TableFacadeTest.java │ │ │ ├── TableFilterFacadeTest.java │ │ │ ├── TypeFacadeTest.java │ │ │ ├── TypeFactoryFacadeTest.java │ │ │ ├── ValueFacadeTest.java │ │ │ └── util │ │ │ ├── ConfigurationMetadataDescriptorTest.java │ │ │ ├── DummyMetadataBuildingContextTest.java │ │ │ ├── DummyMetadataDescriptorTest.java │ │ │ ├── HibernateToolsPersistenceProviderTest.java │ │ │ ├── JdbcMetadataConfigurationTest.java │ │ │ ├── JpaConfigurationTest.java │ │ │ ├── JpaMappingFileHelperTest.java │ │ │ ├── MetadataHelperTest.java │ │ │ ├── MockConnectionProviderTest.java │ │ │ └── MockDialectTest.java │ ├── org.jboss.tools.hibernate.runtime.v_5_4.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── runtime │ │ │ └── v_5_4 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── VersionTest.java │ │ │ └── internal │ │ │ ├── ArtifactCollectorFacadeTest.java │ │ │ ├── Cfg2HbmToolFacadeTest.java │ │ │ ├── ClassMetadataFacadeTest.java │ │ │ ├── CollectionMetadataFacadeTest.java │ │ │ ├── ColumnFacadeTest.java │ │ │ ├── ConfigurationFacadeTest.java │ │ │ ├── CriteriaFacadeTest.java │ │ │ ├── EnvironmentFacadeTest.java │ │ │ ├── ExporterFacadeTest.java │ │ │ ├── FacadeFactoryTest.java │ │ │ ├── ForeignKeyFacadeTest.java │ │ │ ├── GenericExporterFacadeTest.java │ │ │ ├── HQLCodeAssistFacadeTest.java │ │ │ ├── HQLCompletionProposalFacadeTest.java │ │ │ ├── Hbm2DDLExporterFacadeTest.java │ │ │ ├── HibernateMappingExporterExtensionTest.java │ │ │ ├── HibernateMappingExporterFacadeTest.java │ │ │ ├── JoinFacadeTest.java │ │ │ ├── NamingStrategyFacadeTest.java │ │ │ ├── OverrideRepositoryFacadeTest.java │ │ │ ├── PersistentClassFacadeTest.java │ │ │ ├── PrimaryKeyFacadeTest.java │ │ │ ├── PropertyFacadeTest.java │ │ │ ├── QueryExporterFacadeTest.java │ │ │ ├── QueryFacadeTest.java │ │ │ ├── ReverseEngineeringSettingsFacadeTest.java │ │ │ ├── ReverseEngineeringStrategyFacadeTest.java │ │ │ ├── SchemaExportFacadeTest.java │ │ │ ├── ServiceImplTest.java │ │ │ ├── SessionFacadeTest.java │ │ │ ├── SessionFactoryFacadeTest.java │ │ │ ├── SpecialRootClassFacadeTest.java │ │ │ ├── TableFacadeTest.java │ │ │ ├── TableFilterFacadeTest.java │ │ │ ├── TypeFacadeTest.java │ │ │ ├── TypeFactoryFacadeTest.java │ │ │ ├── ValueFacadeTest.java │ │ │ └── util │ │ │ ├── ConfigurationMetadataDescriptorTest.java │ │ │ ├── DummyMetadataBuildingContextTest.java │ │ │ ├── DummyMetadataDescriptorTest.java │ │ │ ├── HibernateToolsPersistenceProviderTest.java │ │ │ ├── JdbcMetadataConfigurationTest.java │ │ │ ├── JpaConfigurationTest.java │ │ │ ├── JpaMappingFileHelperTest.java │ │ │ ├── MetadataHelperTest.java │ │ │ ├── MockConnectionProviderTest.java │ │ │ └── MockDialectTest.java │ ├── org.jboss.tools.hibernate.runtime.v_5_5.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── runtime │ │ │ └── v_5_5 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── VersionTest.java │ │ │ └── internal │ │ │ ├── ArtifactCollectorFacadeTest.java │ │ │ ├── Cfg2HbmToolFacadeTest.java │ │ │ ├── ClassMetadataFacadeTest.java │ │ │ ├── CollectionMetadataFacadeTest.java │ │ │ ├── ColumnFacadeTest.java │ │ │ ├── ConfigurationFacadeTest.java │ │ │ ├── CriteriaFacadeTest.java │ │ │ ├── EnvironmentFacadeTest.java │ │ │ ├── ExporterFacadeTest.java │ │ │ ├── FacadeFactoryTest.java │ │ │ ├── ForeignKeyFacadeTest.java │ │ │ ├── GenericExporterFacadeTest.java │ │ │ ├── HQLCodeAssistFacadeTest.java │ │ │ ├── HQLCompletionProposalFacadeTest.java │ │ │ ├── Hbm2DDLExporterFacadeTest.java │ │ │ ├── HibernateMappingExporterExtensionTest.java │ │ │ ├── HibernateMappingExporterFacadeTest.java │ │ │ ├── JoinFacadeTest.java │ │ │ ├── NamingStrategyFacadeTest.java │ │ │ ├── OverrideRepositoryFacadeTest.java │ │ │ ├── PersistentClassFacadeTest.java │ │ │ ├── PrimaryKeyFacadeTest.java │ │ │ ├── PropertyFacadeTest.java │ │ │ ├── QueryExporterFacadeTest.java │ │ │ ├── QueryFacadeTest.java │ │ │ ├── ReverseEngineeringSettingsFacadeTest.java │ │ │ ├── ReverseEngineeringStrategyFacadeTest.java │ │ │ ├── SchemaExportFacadeTest.java │ │ │ ├── ServiceImplTest.java │ │ │ ├── SessionFacadeTest.java │ │ │ ├── SessionFactoryFacadeTest.java │ │ │ ├── SpecialRootClassFacadeTest.java │ │ │ ├── TableFacadeTest.java │ │ │ ├── TableFilterFacadeTest.java │ │ │ ├── TypeFacadeTest.java │ │ │ ├── TypeFactoryFacadeTest.java │ │ │ ├── ValueFacadeTest.java │ │ │ └── util │ │ │ ├── ConfigurationMetadataDescriptorTest.java │ │ │ ├── DummyMetadataBuildingContextTest.java │ │ │ ├── DummyMetadataDescriptorTest.java │ │ │ ├── HibernateToolsPersistenceProviderTest.java │ │ │ ├── JdbcMetadataConfigurationTest.java │ │ │ ├── JpaConfigurationTest.java │ │ │ ├── JpaMappingFileHelperTest.java │ │ │ ├── MetadataHelperTest.java │ │ │ ├── MockConnectionProviderTest.java │ │ │ └── MockDialectTest.java │ ├── org.jboss.tools.hibernate.runtime.v_5_6.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── runtime │ │ │ └── v_5_6 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── VersionTest.java │ │ │ └── internal │ │ │ ├── ArtifactCollectorFacadeTest.java │ │ │ ├── Cfg2HbmToolFacadeTest.java │ │ │ ├── ClassMetadataFacadeTest.java │ │ │ ├── CollectionMetadataFacadeTest.java │ │ │ ├── ColumnFacadeTest.java │ │ │ ├── ConfigurationFacadeTest.java │ │ │ ├── CriteriaFacadeTest.java │ │ │ ├── EnvironmentFacadeTest.java │ │ │ ├── ExporterFacadeTest.java │ │ │ ├── FacadeFactoryTest.java │ │ │ ├── ForeignKeyFacadeTest.java │ │ │ ├── GenericExporterFacadeTest.java │ │ │ ├── HQLCodeAssistFacadeTest.java │ │ │ ├── HQLCompletionProposalFacadeTest.java │ │ │ ├── Hbm2DDLExporterFacadeTest.java │ │ │ ├── HibernateMappingExporterExtensionTest.java │ │ │ ├── HibernateMappingExporterFacadeTest.java │ │ │ ├── JoinFacadeTest.java │ │ │ ├── NamingStrategyFacadeTest.java │ │ │ ├── OverrideRepositoryFacadeTest.java │ │ │ ├── PersistentClassFacadeTest.java │ │ │ ├── PrimaryKeyFacadeTest.java │ │ │ ├── PropertyFacadeTest.java │ │ │ ├── QueryExporterFacadeTest.java │ │ │ ├── QueryFacadeTest.java │ │ │ ├── ReverseEngineeringSettingsFacadeTest.java │ │ │ ├── ReverseEngineeringStrategyFacadeTest.java │ │ │ ├── SchemaExportFacadeTest.java │ │ │ ├── ServiceImplTest.java │ │ │ ├── SessionFacadeTest.java │ │ │ ├── SessionFactoryFacadeTest.java │ │ │ ├── SpecialRootClassFacadeTest.java │ │ │ ├── TableFacadeTest.java │ │ │ ├── TableFilterFacadeTest.java │ │ │ ├── TypeFacadeTest.java │ │ │ ├── TypeFactoryFacadeTest.java │ │ │ ├── ValueFacadeTest.java │ │ │ └── util │ │ │ ├── ConfigurationMetadataDescriptorTest.java │ │ │ ├── DummyMetadataBuildingContextTest.java │ │ │ ├── DummyMetadataDescriptorTest.java │ │ │ ├── HibernateToolsPersistenceProviderTest.java │ │ │ ├── JdbcMetadataConfigurationTest.java │ │ │ ├── JpaConfigurationTest.java │ │ │ ├── JpaMappingFileHelperTest.java │ │ │ ├── MetadataHelperTest.java │ │ │ ├── MockConnectionProviderTest.java │ │ │ └── MockDialectTest.java │ ├── org.jboss.tools.hibernate.runtime.v_6_0.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── runtime │ │ │ └── v_6_0 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── VersionTest.java │ │ │ └── internal │ │ │ ├── ArtifactCollectorFacadeTest.java │ │ │ ├── Cfg2HbmToolFacadeTest.java │ │ │ ├── ClassMetadataFacadeTest.java │ │ │ ├── CollectionMetadataFacadeTest.java │ │ │ ├── ColumnFacadeTest.java │ │ │ ├── ConfigurationFacadeTest.java │ │ │ ├── CriteriaFacadeTest.java │ │ │ ├── EnvironmentFacadeTest.java │ │ │ ├── ExporterFacadeTest.java │ │ │ ├── FacadeFactoryTest.java │ │ │ ├── ForeignKeyFacadeTest.java │ │ │ ├── GenericExporterFacadeTest.java │ │ │ ├── HQLCodeAssistFacadeTest.java │ │ │ ├── HQLCompletionProposalFacadeTest.java │ │ │ ├── Hbm2DDLExporterFacadeTest.java │ │ │ ├── HibernateMappingExporterExtensionTest.java │ │ │ ├── HibernateMappingExporterFacadeTest.java │ │ │ ├── JoinFacadeTest.java │ │ │ ├── NamingStrategyFacadeTest.java │ │ │ ├── OverrideRepositoryFacadeTest.java │ │ │ ├── PersistentClassFacadeTest.java │ │ │ ├── PrimaryKeyFacadeTest.java │ │ │ ├── PropertyFacadeTest.java │ │ │ ├── QueryExporterFacadeTest.java │ │ │ ├── QueryFacadeTest.java │ │ │ ├── ReverseEngineeringSettingsFacadeTest.java │ │ │ ├── ReverseEngineeringStrategyFacadeTest.java │ │ │ ├── SchemaExportFacadeTest.java │ │ │ ├── ServiceImplTest.java │ │ │ ├── SessionFacadeTest.java │ │ │ ├── SessionFactoryFacadeTest.java │ │ │ ├── SpecialRootClassFacadeTest.java │ │ │ ├── TableFacadeTest.java │ │ │ ├── TableFilterFacadeTest.java │ │ │ ├── TypeFacadeTest.java │ │ │ ├── TypeFactoryFacadeTest.java │ │ │ ├── ValueFacadeTest.java │ │ │ └── util │ │ │ ├── ConfigurationMetadataDescriptorTest.java │ │ │ ├── DummyMetadataBuildingContextTest.java │ │ │ ├── DummyMetadataDescriptorTest.java │ │ │ ├── HibernateToolsPersistenceProviderTest.java │ │ │ ├── JdbcMetadataConfigurationTest.java │ │ │ ├── JpaConfigurationTest.java │ │ │ ├── JpaMappingFileHelperTest.java │ │ │ ├── MetadataHelperTest.java │ │ │ ├── MockConnectionProviderTest.java │ │ │ └── MockDialectTest.java │ ├── org.jboss.tools.hibernate.runtime.v_6_1.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── runtime │ │ │ └── v_6_1 │ │ │ ├── ExportersPresenceTest.java │ │ │ ├── VersionTest.java │ │ │ └── internal │ │ │ ├── ArtifactCollectorFacadeTest.java │ │ │ ├── Cfg2HbmToolFacadeTest.java │ │ │ ├── ClassMetadataFacadeTest.java │ │ │ ├── CollectionMetadataFacadeTest.java │ │ │ ├── ColumnFacadeTest.java │ │ │ ├── ConfigurationFacadeTest.java │ │ │ ├── CriteriaFacadeTest.java │ │ │ ├── EnvironmentFacadeTest.java │ │ │ ├── ExporterFacadeTest.java │ │ │ ├── FacadeFactoryTest.java │ │ │ ├── ForeignKeyFacadeTest.java │ │ │ ├── GenericExporterFacadeTest.java │ │ │ ├── HQLCodeAssistFacadeTest.java │ │ │ ├── HQLCompletionProposalFacadeTest.java │ │ │ ├── Hbm2DDLExporterFacadeTest.java │ │ │ ├── HibernateMappingExporterExtensionTest.java │ │ │ ├── HibernateMappingExporterFacadeTest.java │ │ │ ├── JoinFacadeTest.java │ │ │ ├── NamingStrategyFacadeTest.java │ │ │ ├── OverrideRepositoryFacadeTest.java │ │ │ ├── PersistentClassFacadeTest.java │ │ │ ├── PrimaryKeyFacadeTest.java │ │ │ ├── PropertyFacadeTest.java │ │ │ ├── QueryExporterFacadeTest.java │ │ │ ├── QueryFacadeTest.java │ │ │ ├── ReverseEngineeringSettingsFacadeTest.java │ │ │ ├── ReverseEngineeringStrategyFacadeTest.java │ │ │ ├── SchemaExportFacadeTest.java │ │ │ ├── ServiceImplTest.java │ │ │ ├── SessionFacadeTest.java │ │ │ ├── SessionFactoryFacadeTest.java │ │ │ ├── SpecialRootClassFacadeTest.java │ │ │ ├── TableFacadeTest.java │ │ │ ├── TableFilterFacadeTest.java │ │ │ ├── TypeFacadeTest.java │ │ │ ├── TypeFactoryFacadeTest.java │ │ │ ├── ValueFacadeTest.java │ │ │ ├── legacy │ │ │ ├── BigDecimalTypeTest.java │ │ │ ├── BigIntegerTypeTest.java │ │ │ ├── BooleanTypeTest.java │ │ │ ├── ByteTypeTest.java │ │ │ ├── CalendarDateTypeTest.java │ │ │ ├── CalendarTypeTest.java │ │ │ ├── CharacterTypeTest.java │ │ │ ├── ClassTypeTest.java │ │ │ ├── CurrencyTypeTest.java │ │ │ ├── DateTypeTest.java │ │ │ ├── DoubleTypeTest.java │ │ │ ├── FloatTypeTest.java │ │ │ ├── IntegerTypeTest.java │ │ │ ├── LocaleTypeTest.java │ │ │ ├── LongTypeTest.java │ │ │ ├── ShortTypeTest.java │ │ │ ├── StringTypeTest.java │ │ │ ├── TextTypeTest.java │ │ │ ├── TimeTypeTest.java │ │ │ ├── TimeZoneTypeTest.java │ │ │ ├── TimestampTypeTest.java │ │ │ ├── TrueFalseTypeTest.java │ │ │ └── YesNoTypeTest.java │ │ │ └── util │ │ │ ├── ConfigurationMetadataDescriptorTest.java │ │ │ ├── DummyMetadataBuildingContextTest.java │ │ │ ├── DummyMetadataDescriptorTest.java │ │ │ ├── HibernateToolsPersistenceProviderTest.java │ │ │ ├── JdbcMetadataConfigurationTest.java │ │ │ ├── JpaConfigurationTest.java │ │ │ ├── JpaMappingFileHelperTest.java │ │ │ ├── MetadataHelperTest.java │ │ │ ├── MockConnectionProviderTest.java │ │ │ └── MockDialectTest.java │ └── pom.xml │ └── util │ ├── org.jboss.tools.hibernate.reddeer │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── pom.xml │ └── src │ │ └── org │ │ └── jboss │ │ └── tools │ │ └── hibernate │ │ └── reddeer │ │ ├── Activator.java │ │ ├── codegen │ │ ├── ExportAntCodeGenWizard.java │ │ └── ExportAntCodeGenWizardPage.java │ │ ├── common │ │ └── project │ │ │ └── properties │ │ │ ├── ResourcePropertyPage.java │ │ │ └── Test.java │ │ ├── condition │ │ ├── ConfigrationsAreLoaded.java │ │ └── EntityIsGenerated.java │ │ ├── console │ │ ├── EditConfigurationMainPage.java │ │ ├── EditConfigurationMappingsPage.java │ │ ├── EditConfigurationOptionsPage.java │ │ ├── EditConfigurationShell.java │ │ ├── EditorConfigurationClassPathPage.java │ │ ├── HibernateConfiguration.java │ │ ├── views │ │ │ ├── DynamicSQLPreviewView.java │ │ │ ├── KnownConfigurationsView.java │ │ │ ├── QueryPageTabView.java │ │ │ └── QueryParametersView.java │ │ └── wizards │ │ │ ├── NewConfigurationFirstPage.java │ │ │ ├── NewConfigurationWizard.java │ │ │ ├── NewConfigurationWizardPage.java │ │ │ ├── NewReverseEngineeringFileWizard.java │ │ │ ├── SelectConnectionProfileDialog.java │ │ │ └── TableFilterWizardPage.java │ │ ├── criteriaeditor │ │ └── CriteriaEditor.java │ │ ├── dialog │ │ └── LaunchConfigurationsDialog.java │ │ ├── editor │ │ └── JpaXmlEditor.java │ │ ├── hqleditor │ │ └── HQLEditor.java │ │ ├── jdt │ │ └── ui │ │ │ ├── jpa │ │ │ └── process │ │ │ │ └── wizard │ │ │ │ ├── EntitiesList.java │ │ │ │ └── HibernateJPAWizard.java │ │ │ └── wizards │ │ │ ├── NewHibernateMappingElementsSelectionPage2.java │ │ │ ├── NewHibernateMappingFilePage.java │ │ │ ├── NewHibernateMappingFileWizard.java │ │ │ └── NewHibernateMappingPreviewPage.java │ │ ├── jpt │ │ └── ui │ │ │ └── wizard │ │ │ ├── GenerateDdlWizard.java │ │ │ ├── GenerateDdlWizardPage.java │ │ │ ├── GenerateEntitiesWizard.java │ │ │ └── GenerateEntitiesWizardPage.java │ │ ├── mapper │ │ └── editors │ │ │ └── ReverseEngineeringEditor.java │ │ ├── perspective │ │ └── HibernatePerspective.java │ │ ├── preference │ │ └── HibernatePreferencePage.java │ │ ├── ui │ │ └── xml │ │ │ └── editor │ │ │ └── Hibernate3CompoundEditor.java │ │ ├── view │ │ ├── JPADetailsView.java │ │ └── JPAStructureView.java │ │ └── wizard │ │ ├── JPAProjectWizard.java │ │ ├── JPAProjectWizardFirstPage.java │ │ ├── JpaFacetInstallPage.java │ │ ├── NewDSXMLWizard.java │ │ └── WizardNewDSXMLFileCreationPage.java │ └── pom.xml ├── pom.xml ├── search ├── plugin │ ├── core │ │ ├── org.jboss.tools.hibernate.search │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── build.properties │ │ │ ├── plugin.xml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── jboss │ │ │ │ └── tools │ │ │ │ └── hibernate │ │ │ │ └── search │ │ │ │ ├── HSearchConsoleConfigurationPreferences.java │ │ │ │ ├── HibernateSearchConsolePlugin.java │ │ │ │ ├── console │ │ │ │ └── ConsoleConfigurationUtils.java │ │ │ │ ├── handler │ │ │ │ ├── IndexRebuildHandler.java │ │ │ │ └── IndexToolkitViewLaunchHandler.java │ │ │ │ ├── property │ │ │ │ └── testers │ │ │ │ │ ├── HibernateSearchEnabledPropertyTester.java │ │ │ │ │ └── OneParentConfigPropertyTester.java │ │ │ │ └── toolkit │ │ │ │ ├── AbstractTabBuilder.java │ │ │ │ ├── ConfigurationCombo.java │ │ │ │ ├── IndexToolkitView.java │ │ │ │ ├── analyzers │ │ │ │ ├── AnalyzersCombo.java │ │ │ │ └── AnalyzersTabBuilder.java │ │ │ │ ├── docs │ │ │ │ └── ExploreDocsTabBuilder.java │ │ │ │ └── search │ │ │ │ ├── SearchResultTable.java │ │ │ │ └── SearchTabBuilder.java │ │ └── pom.xml │ ├── pom.xml │ └── runtime │ │ ├── org.jboss.tools.hibernate.search.runtime.common │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── search │ │ │ └── runtime │ │ │ └── common │ │ │ ├── AbstractAnalyzer.java │ │ │ ├── AbstractDocument.java │ │ │ ├── AbstractFacade.java │ │ │ ├── AbstractFacadeFactory.java │ │ │ ├── AbstractField.java │ │ │ ├── AbstractFullTextSessionFacade.java │ │ │ ├── AbstractHSearchService.java │ │ │ ├── AbstractIndexReader.java │ │ │ ├── AbstractLuceneQuery.java │ │ │ ├── AbstractQueryParser.java │ │ │ ├── AbstractSearchFactoryFacade.java │ │ │ ├── IFacadeFactory.java │ │ │ └── internal │ │ │ └── HibernateSearchRuntimeCommon.java │ │ ├── org.jboss.tools.hibernate.search.runtime.spi │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── schema │ │ │ └── services.exsd │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── search │ │ │ └── runtime │ │ │ └── spi │ │ │ ├── HSearchServiceLookup.java │ │ │ ├── IAnalyzer.java │ │ │ ├── IDocument.java │ │ │ ├── IField.java │ │ │ ├── IFullTextSession.java │ │ │ ├── IHSearchService.java │ │ │ ├── IIndexReader.java │ │ │ ├── ILuceneQuery.java │ │ │ ├── IQueryParser.java │ │ │ ├── ISearchFactory.java │ │ │ └── internal │ │ │ └── HibernateSearchServicePlugin.java │ │ ├── org.jboss.tools.hibernate.search.runtime.v_4_0 │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── search │ │ │ ├── FacadeFactoryImpl.java │ │ │ └── HSearchServiceImpl.java │ │ ├── org.jboss.tools.hibernate.search.runtime.v_5_3 │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── search │ │ │ ├── FacadeFactoryImpl.java │ │ │ └── HSearchServiceImpl.java │ │ ├── org.jboss.tools.hibernate.search.runtime.v_5_5.1 │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── search │ │ │ ├── FacadeFactoryImpl.java │ │ │ └── HSearchServiceImpl.java │ │ ├── org.jboss.tools.hibernate.search.runtime.v_5_5 │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── search │ │ │ ├── FacadeFactoryImpl.java │ │ │ └── HSearchServiceImpl.java │ │ ├── org.jboss.tools.hibernate.search.runtime.v_5_7 │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── fragment.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── search │ │ │ ├── FacadeFactoryImpl.java │ │ │ └── HSearchServiceImpl.java │ │ └── pom.xml ├── pom.xml └── test │ ├── core │ ├── org.jboss.tools.hibernate.search.test │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── pom.xml │ │ └── src │ │ │ └── org │ │ │ └── jboss │ │ │ └── tools │ │ │ └── hibernate │ │ │ └── search │ │ │ └── test │ │ │ ├── AllTestsSuite.java │ │ │ ├── HSearchConsoleConfigurationPreferencesTest.java │ │ │ ├── HibernateSearchTestPluginActivator.java │ │ │ └── property │ │ │ └── testers │ │ │ ├── HibernateSearchEnabledPropertyTesterTest.java │ │ │ └── OneParentConfigPropertyTesterTest.java │ └── pom.xml │ └── pom.xml ├── site ├── category.xml └── pom.xml ├── test-framework └── pom.xml └── tests └── pom.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | .classpath 3 | .java-version 4 | .settings/ 5 | lib/ 6 | target/ 7 | -------------------------------------------------------------------------------- /common/plugin/.gitignore: -------------------------------------------------------------------------------- 1 | !lib/ -------------------------------------------------------------------------------- /common/plugin/lib/.gitignore: -------------------------------------------------------------------------------- 1 | lib/ -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.antlr.v_2_7_7/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/antlr-2.7.7.jar 4 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.antlr4-runtime.v_4_10/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ 4 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.bsh.v_2_0_b4/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = META-INF/,\ 2 | .,\ 3 | lib/bsh-core-2.0b4.jar 4 | src.includes = pom.xml 5 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.bsh.v_2_0_b4/src/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/common/plugin/lib/org.jboss.tools.hibernate.libs.bsh.v_2_0_b4/src/.gitkeep -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.byte-buddy.v_1_12/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ 4 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.classmate.v_1_5/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ 4 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.commons-collections4.v_4_4/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ 4 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.dom4j.v_1_6_1/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = META-INF/,\ 2 | .,\ 3 | lib/dom4j-1.6.1.jar 4 | src.includes = pom.xml 5 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.dom4j.v_2_1/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ 4 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.freemarker.v_2_3/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/,\ 4 | lib/freemarker-2.3.31.jar 5 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.h2.v_1_4/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/,\ 4 | lib/h2-1.4.200.jar 5 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.h2.v_2_1/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ 4 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.hibernate-commons-annotations.v_5_1/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ 4 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.hibernate-commons-annotations.v_6_0/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ 4 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.jakarta-activation-api.v_2_0/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/,\ 4 | lib/jakarta.activation-api-2.0.1.jar 5 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.jakarta-persistence-api.v_3_0/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.jakarta-persistence-api.v_3_1/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.jakarta-transaction-api.v_2_0/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ 4 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.jakarta-xml-bind-api.v_3_0/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/,\ 4 | lib/jakarta.xml.bind-api-3.0.1.jar 5 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.jandex.v_2_4/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/,\ 4 | lib/jandex-2.4.0.Final.jar 5 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.javassist.v_3_28/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.jaxb.v_2_3/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ 4 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.jaxb.v_3_0/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ 4 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.jboss-logging.v_3_4/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ 4 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.jpa.v_2_2/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ 4 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.jtidy.v_r8-20060801/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/jtidy-r8-20060801.jar 4 | -------------------------------------------------------------------------------- /common/plugin/lib/org.jboss.tools.hibernate.libs.transaction-api.v_1_2/build.properties: -------------------------------------------------------------------------------- 1 | src.includes = pom.xml 2 | bin.includes = META-INF/,\ 3 | lib/ 4 | -------------------------------------------------------------------------------- /docs/contribute/images/add-new-software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/add-new-software.png -------------------------------------------------------------------------------- /docs/contribute/images/add-personal-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/add-personal-repo.png -------------------------------------------------------------------------------- /docs/contribute/images/available-software-core-tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/available-software-core-tests.png -------------------------------------------------------------------------------- /docs/contribute/images/available-software-plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/available-software-plugins.png -------------------------------------------------------------------------------- /docs/contribute/images/create-local-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/create-local-clone.png -------------------------------------------------------------------------------- /docs/contribute/images/eclipse-ide-launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/eclipse-ide-launcher.png -------------------------------------------------------------------------------- /docs/contribute/images/eclipse-packages-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/eclipse-packages-page.png -------------------------------------------------------------------------------- /docs/contribute/images/final-eclipse-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/final-eclipse-window.png -------------------------------------------------------------------------------- /docs/contribute/images/fork-from-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/fork-from-github.png -------------------------------------------------------------------------------- /docs/contribute/images/import-maven-projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/import-maven-projects.png -------------------------------------------------------------------------------- /docs/contribute/images/import-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/import-select.png -------------------------------------------------------------------------------- /docs/contribute/images/initial-eclipse-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/initial-eclipse-window.png -------------------------------------------------------------------------------- /docs/contribute/images/install-details-core-tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/install-details-core-tests.png -------------------------------------------------------------------------------- /docs/contribute/images/install-details-plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/install-details-plugins.png -------------------------------------------------------------------------------- /docs/contribute/images/m2e-connectors-discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/m2e-connectors-discover.png -------------------------------------------------------------------------------- /docs/contribute/images/m2e-connectors-install-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/m2e-connectors-install-details.png -------------------------------------------------------------------------------- /docs/contribute/images/m2e-connectors-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/m2e-connectors-install.png -------------------------------------------------------------------------------- /docs/contribute/images/m2e-connectors-review-licenses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/m2e-connectors-review-licenses.png -------------------------------------------------------------------------------- /docs/contribute/images/mvn-clean-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/mvn-clean-install.png -------------------------------------------------------------------------------- /docs/contribute/images/mvn-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/mvn-version.png -------------------------------------------------------------------------------- /docs/contribute/images/review-licenses-core-tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/review-licenses-core-tests.png -------------------------------------------------------------------------------- /docs/contribute/images/review-licenses-plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/review-licenses-plugins.png -------------------------------------------------------------------------------- /docs/contribute/images/security-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/contribute/images/security-warning.png -------------------------------------------------------------------------------- /docs/reference/en-US/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | AdditionalInfo=35 3 | Sorting=6 4 | Timestamp=2011,1,24,11,27,30 5 | ViewMode=1 6 | -------------------------------------------------------------------------------- /docs/reference/en-US/JPA_project_for_hibernate_jboss_tools.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/JPA_project_for_hibernate_jboss_tools.zip -------------------------------------------------------------------------------- /docs/reference/en-US/JPA_project_for_hibernate_jboss_tools_331.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/JPA_project_for_hibernate_jboss_tools_331.zip -------------------------------------------------------------------------------- /docs/reference/en-US/TestHibernate_for_hibernate_jboss_tools.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/TestHibernate_for_hibernate_jboss_tools.zip -------------------------------------------------------------------------------- /docs/reference/en-US/TestHibernate_for_hibernate_jboss_tools_331.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/TestHibernate_for_hibernate_jboss_tools_331.zip -------------------------------------------------------------------------------- /docs/reference/en-US/database_jboss_tools.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/database_jboss_tools.zip -------------------------------------------------------------------------------- /docs/reference/en-US/database_jboss_tools_331.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/database_jboss_tools_331.zip -------------------------------------------------------------------------------- /docs/reference/en-US/images/code_generation/code_generation_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/code_generation/code_generation_1.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/favicon.ico -------------------------------------------------------------------------------- /docs/reference/en-US/images/jbosstools_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/jbosstools_logo.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/add_property1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/add_property1.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/add_property2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/add_property2.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/add_property3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/add_property3.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/add_property4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/add_property4.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/add_property5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/add_property5.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/annotations1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/annotations1.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/annotations1_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/annotations1_a.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/annotations2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/annotations2.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/annotations3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/annotations3.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/autoLayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/autoLayout.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/butt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/butt1.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/butt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/butt2.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/butt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/butt3.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/butt4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/butt4.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/dali_integration1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/dali_integration1.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/dali_integration10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/dali_integration10.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/dali_integration11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/dali_integration11.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/dali_integration12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/dali_integration12.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/dali_integration2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/dali_integration2.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/dali_integration3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/dali_integration3.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/dali_integration4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/dali_integration4.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/dali_integration5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/dali_integration5.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/dali_integration6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/dali_integration6.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/dali_integration7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/dali_integration7.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/dali_integration8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/dali_integration8.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/dali_integration9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/dali_integration9.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/diagram1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/diagram1.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/diagram2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/diagram2.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/diagramToolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/diagramToolbar.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/expandState.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/expandState.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/exportAsImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/exportAsImage.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/layout.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/map_diagram1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/map_diagram1.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/map_diagram2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/map_diagram2.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/map_diagram3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/map_diagram3.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/openMappingFile_but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/openMappingFile_but.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/openSourceFile_but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/openSourceFile_but.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_0.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_0_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_0_a.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_0_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_0_b.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_1.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_10.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_11.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_12.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_12_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_12_a.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_12_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_12_b.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_13.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_14.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_15.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_16.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_17.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_17_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_17_a.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_18.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_18_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_18_a.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_18_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_18_b.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_18_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_18_g.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_19.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_19_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_19_b.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_19_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_19_c.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_19_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_19_d.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_2.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_20.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_21_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_21_a.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_21_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_21_b.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_22.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_2_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_2_a.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_3.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_4.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_4_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_4_a.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_4_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_4_b.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_4_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_4_c.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_4_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_4_d.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_5.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_6.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_7.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_8.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_8a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_8a.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_8b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_8b.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/plugins_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/plugins_9.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/prototypingQueries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/prototypingQueries.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/saveDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/saveDiagram.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/sticky_but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/sticky_but.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/toggleConnections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/toggleConnections.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/toolbarAutolayout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/toolbarAutolayout.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/toolbarExpandCollapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/toolbarExpandCollapse.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/toolbarRefresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/toolbarRefresh.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/toolbarShowHideConnections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/toolbarShowHideConnections.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/toolbarShowHideShapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/toolbarShowHideShapes.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/toolbarZoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/toolbarZoom.png -------------------------------------------------------------------------------- /docs/reference/en-US/images/plugins/visibleState.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/docs/reference/en-US/images/plugins/visibleState.png -------------------------------------------------------------------------------- /docs/reference/publican.cfg: -------------------------------------------------------------------------------- 1 | # Config::Simple 4.59 2 | # Fri Nov 20 13:19:45 2009 3 | 4 | xml_lang: en-US 5 | type: Book 6 | brand: JBoss 7 | git_branch: docs-rhel-6 8 | -------------------------------------------------------------------------------- /features/org.hibernate.eclipse.feature/sourceTemplateFeature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/features/org.hibernate.eclipse.feature/sourceTemplateFeature/.gitkeep -------------------------------------------------------------------------------- /features/org.hibernate.eclipse.feature/sourceTemplatePlugin/about.mappings: -------------------------------------------------------------------------------- 1 | # about.mappings 2 | # contains fill-ins for about.properties 3 | # java.io.Properties file (ISO 8859-1 with "\" escapes) 4 | # This file does not need to be translated. 5 | 6 | 0=@build@ -------------------------------------------------------------------------------- /features/org.hibernate.eclipse.feature/sourceTemplatePlugin/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = plugin.*,\ 2 | about.*,\ 3 | src/,\ 4 | META-INF/ 5 | sourcePlugin = true 6 | -------------------------------------------------------------------------------- /features/org.hibernate.eclipse.feature/sourceTemplatePlugin/plugin.properties: -------------------------------------------------------------------------------- 1 | pluginName = Hibernate Tools Source 2 | providerName = Red Hat 3 | 4 | -------------------------------------------------------------------------------- /features/org.hibernate.eclipse.test.feature/sourceTemplateFeature/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/features/org.hibernate.eclipse.test.feature/sourceTemplateFeature/.gitkeep -------------------------------------------------------------------------------- /features/org.jboss.tools.hibernate.orm.runtime.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | feature.properties 3 | -------------------------------------------------------------------------------- /features/org.jboss.tools.hibernate.search.test.feature/build.properties: -------------------------------------------------------------------------------- 1 | bin.includes = feature.xml,\ 2 | feature.properties 3 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/.gitignore: -------------------------------------------------------------------------------- 1 | #ignore db and screenshot dir 2 | db/ 3 | screenshots/ 4 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | resources/,\ 6 | plugin.properties 7 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/plugin.properties: -------------------------------------------------------------------------------- 1 | providerName=Red Hat 2 | pluginName=Hibernate Tools UI Bot Tests -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/properties/hsqlint-bot.properties: -------------------------------------------------------------------------------- 1 | #DB=hsqldb18,internal,driver,jdbc,user,,/home/jpeterka/etc/hb/hsql-db.sql 2 | DB=hsqldb18,internal,driver,jdbc,user,, 3 | 4 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/h2_settings.properties: -------------------------------------------------------------------------------- 1 | #HSQLDB 1.8 property file 2 | dialect=H2 3 | driver=org.h2.Driver 4 | jdbc=jdbc:h2:db://localhost/sakila 5 | schema= 6 | catalog= 7 | username=sa 8 | password= 9 | factory= -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/hsqldb18_settings.properties: -------------------------------------------------------------------------------- 1 | #HSQLDB 1.8 property file 2 | dialect=HSQL 3 | driver=org.hsqldb.jdbcDriver 4 | jdbc=jdbc:hsqldb:hsql://localhost/xdb 5 | schema= 6 | catalog= 7 | username=sa 8 | password= 9 | factory= -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/links.properties: -------------------------------------------------------------------------------- 1 | H2_DRIVER_SOURCE=http://central.maven.org/maven2/com/h2database/h2/1.3.161/h2-1.3.161.jar 2 | H2_DRIVER_TARGET=resources/prj/hibernatelib/connector 3 | H2_FILE=h2-1.3.161.jar -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/ecl-jpa10/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/ecl-jpa20/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/ecl-jpa21/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/ecl-jpa22/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate36-ent/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate36-ent/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate36/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate36/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate43-ent/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate43-ent/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate43/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate43/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate50-ent/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate50-ent/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate50/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate50/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate54-ent/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate54-ent/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate54/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate54/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate55-ent/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate55-ent/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate55/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate55/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate56-ent/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate56-ent/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate56/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate56/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate60-ent/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate60-ent/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate60/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate60/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate61-ent/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate61-ent/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate61/src/main/java/EmptyClass.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyClass { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/prj/mvn-hibernate61/src/test/java/EmptyTest.java: -------------------------------------------------------------------------------- 1 | 2 | public class EmptyTest { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /itests/org.jboss.tools.hibernate.ui.bot.test/resources/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/itests/org.jboss.tools.hibernate.ui.bot.test/resources/project.properties -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/codegenwizard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/codegenwizard.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/consolecfgwizard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/consolecfgwizard.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/hbmxmlcompletion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/hbmxmlcompletion.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/hibernatecfgwizard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/hibernatecfgwizard.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/consolelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/consolelog.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/criteriaeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/criteriaeditor.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/easysetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/easysetup.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/entitymodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/entitymodel.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/hql-completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/hql-completion.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/multiexporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/multiexporter.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/newoutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/newoutline.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/pluginhelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/pluginhelp.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/properties.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/wikisearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/wikisearch.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/wizard-reveng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/wizard-reveng.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/xmlcatalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/newandnoteworthy/xmlcatalog.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/doc/queryconsole.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/doc/queryconsole.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/hibernate_small_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/hibernate_small_icon.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/1to1property.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/1to1property.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/1tonproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/1tonproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/ant_codegen_export.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/ant_codegen_export.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/anyproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/anyproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/catalog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/catalog.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/clear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/clear.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/close.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/close_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/close_disabled.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/columns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/columns.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/componentproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/componentproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/connected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/connected.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/criteria_editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/criteria_editor.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/database.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/database.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/error.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/exclamation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/exclamation.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/execute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/execute.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/format.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/format.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/function.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/function.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/generator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/generator.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/hibernate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/hibernate.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/hibernate_config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/hibernate_config.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/hibernate_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/hibernate_icon.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/hibernate_launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/hibernate_launch.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/hibernate_mapping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/hibernate_mapping.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/hibernate_overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/hibernate_overlay.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/hibernate_small_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/hibernate_small_icon.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/hicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/hicon.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/hicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/hicon.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/hql_editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/hql_editor.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/hql_editor_connect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/hql_editor_connect.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/idproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/idproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/ignoreparameter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/ignoreparameter.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/java.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/java.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/jboss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/jboss.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/layout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/layout.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/layout_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/layout_disabled.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/mapped_class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/mapped_class.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/mapping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/mapping.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/mto1property.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/mto1property.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/mtoaproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/mtoaproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/mtonproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/mtonproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/new_param.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/new_param.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/newhibernate_wiz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/newhibernate_wiz.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/ovr16/error_co.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/ovr16/error_co.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/ovr16/obj_ovr_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/ovr16/obj_ovr_error.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/ovr16/obj_ovr_server.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/ovr16/obj_ovr_server.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/ovr16/warning_co.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/ovr16/warning_co.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/parameter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/parameter.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/pindown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/pindown.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/pindown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/pindown.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/pinup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/pinup.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/pinup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/pinup.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/plus.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/primary_key.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/primary_key.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/property.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/property.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/refresh_run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/refresh_run.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/reload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/reload.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/runextern_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/runextern_no.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/runextern_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/runextern_yes.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/schema.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/schema.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/table.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/treeminus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/treeminus.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/treeplus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/treeplus.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/types.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/types.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/unknowntypeproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/unknowntypeproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/unmapped_class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/unmapped_class.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/versionproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/versionproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/xpl/complete_tsk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/xpl/complete_tsk.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/xpl/incomplete_tsk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/xpl/incomplete_tsk.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/xpl/removeall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/xpl/removeall.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/icons/images/xpl/removeall_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.console/icons/images/xpl/removeall_disabled.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/actions/HTConstants.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.eclipse.console.actions; 2 | 3 | public interface HTConstants { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/wizards/messages.properties: -------------------------------------------------------------------------------- 1 | ConnectionProfile=Connection Profile 2 | SelectConnectionProfile=Select Connection Profile 3 | -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.help/doc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.help/doc.zip -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.help/plugin.properties: -------------------------------------------------------------------------------- 1 | #Properties file for org.hibernate.eclipse.help 2 | Bundle-Vendor.0 = Red Hat 3 | Bundle-Name.0 = Hibernate Help -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.jdt.ui/icons/hibernate_proposalcategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.jdt.ui/icons/hibernate_proposalcategory.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.jdt.ui/icons/hibernate_small_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.jdt.ui/icons/hibernate_small_icon.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/hibernate_small_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/hibernate_small_icon.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/1to1property.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/1to1property.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/1tonproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/1tonproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/anyproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/anyproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/clear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/clear.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/close.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/close_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/close_disabled.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/componentproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/componentproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/execute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/execute.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/hibernate_config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/hibernate_config.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/hibernate_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/hibernate_icon.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/hibernate_mapping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/hibernate_mapping.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/hibernate_overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/hibernate_overlay.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/hibernate_small_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/hibernate_small_icon.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/hicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/hicon.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/idproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/idproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/mapped_class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/mapped_class.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/mto1property.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/mto1property.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/mtoaproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/mtoaproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/mtonproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/mtonproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/pindown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/pindown.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/pinup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/pinup.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/property.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/property.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/types.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/types.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/unknowntypeproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/unknowntypeproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/unmapped_class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/unmapped_class.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/versionproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse.mapper/icons/images/versionproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse.mapper/plugin.properties: -------------------------------------------------------------------------------- 1 | #Properties file for org.hibernate.eclipse.mapper 2 | Bundle-Vendor.0 = Red Hat 3 | Bundle-Name.0 = Mapper Plug-in -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/about.mappings: -------------------------------------------------------------------------------- 1 | # about.mappings 2 | # contains fill-ins for about.properties 3 | # java.io.Properties file (ISO 8859-1 with "\" escapes) 4 | # This file does not need to be translated. 5 | 6 | -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/about.properties: -------------------------------------------------------------------------------- 1 | blurb=Hibernate Tools for Eclipse\n\nVersion\: {featureVersion}\n\n(c) Copyright (c) Red Hat, Inc., contributors and others 2004 - 2012. All rights reserved.\nVisit http\://tools.hibernate.org 2 | 3 | -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/hibernate_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/hibernate_icon.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/hibernate_small_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/hibernate_small_icon.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/1to1property.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/1to1property.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/1tonproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/1tonproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/ant_codegen_export.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/ant_codegen_export.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/anyproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/anyproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/catalog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/catalog.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/clear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/clear.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/close.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/close_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/close_disabled.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/columns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/columns.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/componentproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/componentproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/connected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/connected.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/criteria_editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/criteria_editor.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/criteria_editor_connect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/criteria_editor_connect.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/database.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/database.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/error.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/exclamation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/exclamation.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/execute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/execute.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/format.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/format.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/function.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/function.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/generator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/generator.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/hibernate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/hibernate.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/hibernate_config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/hibernate_config.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/hibernate_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/hibernate_icon.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/hibernate_launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/hibernate_launch.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/hibernate_mapping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/hibernate_mapping.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/hibernate_overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/hibernate_overlay.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/hibernate_small_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/hibernate_small_icon.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/hicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/hicon.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/hicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/hicon.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/hql_editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/hql_editor.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/hql_editor_connect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/hql_editor_connect.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/idproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/idproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/ignoreparameter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/ignoreparameter.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/java.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/java.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/jboss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/jboss.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/layout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/layout.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/layout_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/layout_disabled.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/mapped_class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/mapped_class.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/mapping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/mapping.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/mto1property.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/mto1property.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/mtoaproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/mtoaproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/mtonproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/mtonproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/new_param.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/new_param.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/newhibernate_wiz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/newhibernate_wiz.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/ovr16/error_co.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/ovr16/error_co.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/ovr16/obj_ovr_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/ovr16/obj_ovr_error.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/ovr16/obj_ovr_server.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/ovr16/obj_ovr_server.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/ovr16/obj_ovr_server_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/ovr16/obj_ovr_server_off.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/ovr16/warning_co.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/ovr16/warning_co.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/parameter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/parameter.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/pindown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/pindown.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/pindown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/pindown.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/pinup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/pinup.jpg -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/pinup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/pinup.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/plus.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/primary_key.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/primary_key.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/property.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/property.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/refresh_run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/refresh_run.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/reload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/reload.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/runextern_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/runextern_no.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/runextern_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/runextern_yes.png -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/schema.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/schema.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/table.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/treeminus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/treeminus.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/treeplus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/treeplus.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/types.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/types.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/unknowntypeproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/unknowntypeproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/unmapped_class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/unmapped_class.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/versionproperty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/versionproperty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/xpl/complete_tsk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/xpl/complete_tsk.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/xpl/incomplete_tsk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/xpl/incomplete_tsk.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/xpl/removeall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/xpl/removeall.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/icons/images/xpl/removeall_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.hibernate.eclipse/icons/images/xpl/removeall_disabled.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.hibernate.eclipse/plugin.properties: -------------------------------------------------------------------------------- 1 | #Properties file for org.hibernate.eclipse 2 | Bundle-Vendor.0 = Red Hat 3 | Bundle-Name.0 = Hibernate Tools -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.jpt.core/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = plugin.xml,\ 4 | META-INF/,\ 5 | .,\ 6 | plugin.properties,\ 7 | about.html 8 | -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.jpt.core/plugin.properties: -------------------------------------------------------------------------------- 1 | #Properties file for org.jboss.tools.hibernate.jpt.core 2 | Bundle-Vendor.0 = Red Hat 3 | Bundle-Name.0 = Hibernate Jdt Core -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.jpt.core/src/org/jboss/tools/hibernate/jpt/core/internal/messages.properties: -------------------------------------------------------------------------------- 1 | HibernateJpaProject_Update_Hibernate_properties=Update Hibernate properties 2 | -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.jpt.ui/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml,\ 6 | plugin.properties,\ 7 | about.html 8 | -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.jpt.ui/icons/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.jpt.ui/icons/warning.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.jpt.ui/plugin.properties: -------------------------------------------------------------------------------- 1 | #Properties file for org.jboss.tools.hibernate.jpt.ui 2 | Bundle-Vendor.0 = Red Hat 3 | Bundle-Name.0 = Hibernate Jdt UI -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/icons/hibernate_small_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/icons/hibernate_small_icon.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/icons/java.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/icons/java.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/icons/mapping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/icons/mapping.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/any.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/any.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection_array.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection_array.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection_bag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection_bag.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection_idbag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection_idbag.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection_list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection_list.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection_map.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection_map.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection_primitive_array.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection_primitive_array.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection_set.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/collection_set.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/component.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/component.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/component_id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/component_id.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/delete_edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/delete_edit.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/error_st_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/error_st_obj.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/error_tsk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/error_tsk.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/error_view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/error_view.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDataPerspective.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDataPerspective.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDataPerspective1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDataPerspective1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseColumn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseColumn.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseColumn1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseColumn1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseConstrain1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseConstrain1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseForeignKeyColumn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseForeignKeyColumn.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabasePrimaryKeyColumn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabasePrimaryKeyColumn.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseSchema.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseSchema.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseSchema1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseSchema1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseTable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseTable.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseTable1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseTable1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseVersionColumn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseVersionColumn.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDatabaseView.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDialogAction1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdDialogAction1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdMapping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdMapping.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdMapping1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdMapping1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdMappingStorage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdMappingStorage.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdMappingStorage1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdMappingStorage1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdMapping_new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdMapping_new.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdOrm16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdOrm16x16.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdOrmModel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdOrmModel.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdOrmModel1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdOrmModel1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPackage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPackage.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPackage1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPackage1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentClass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentClass.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentClass1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentClass1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentClassMapping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentClassMapping.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentClassMapping1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentClassMapping1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentField.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentField.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentField1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentField1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentFieldMapping1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentFieldMapping1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentRootClassMapping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentRootClassMapping.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentSubclassMapping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentSubclassMapping.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentValueMapping1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdPersistentValueMapping1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdProperties.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdProperties.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdWizardAction1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/exdWizardAction1.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/file_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/file_obj.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/fldr_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/fldr_obj.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/hibernate_small_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/hibernate_small_icon.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/hql.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/hql.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/install_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/install_16.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/install_32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/install_32.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/jar_obj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/jar_obj.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/many-to-any.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/many-to-any.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/many-to-many.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/many-to-many.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/many-to-one.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/many-to-one.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/many-to-one_id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/many-to-one_id.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/not_mapped.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/not_mapped.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/object.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/object.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/object_none.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/object_none.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/one-to-many.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/one-to-many.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/one-to-one.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/one-to-one.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/one-to-one_id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/one-to-one_id.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/orm16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/orm16x16.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/orm32x32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/orm32x32.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/parent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/parent.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/property.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/property.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/refresh_orm_gef.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/refresh_orm_gef.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/shevron_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/shevron_down.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/shevron_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/shevron_up.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/simple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/simple.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/simple_id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/simple_id.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/simple_version.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/simple_version.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/uninstall_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/uninstall_16.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/uninstall_32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/uninstall_32.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/unique_key.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/unique_key.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/unknown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/unknown.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/warning_vew.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/warning_vew.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/images/wiz_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.ui/images/wiz_icon.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.ui/plugin.properties: -------------------------------------------------------------------------------- 1 | providerName=Red Hat 2 | pluginName=UI Plugin 3 | Category_Print=Print 4 | Command_PrintPageSetup=Page Setup... 5 | Command_PrintPreview=Print Preview -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml.ui/plugin.properties: -------------------------------------------------------------------------------- 1 | providerName=Red Hat 2 | pluginName=Hibernate 3.0 XML UI 3 | -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/plugin.properties: -------------------------------------------------------------------------------- 1 | providerName=Red Hat 2 | pluginName=Hibernate 3.0 XML 3 | -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/class.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/class.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/collection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/collection.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/column.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/column.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/comment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/comment.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/component.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/component.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/composite_id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/composite_id.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/connection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/connection.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/discriminator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/discriminator.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/dynacomponent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/dynacomponent.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/empty.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/field.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/field.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/field_key.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/field_key.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/file.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/filled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/filled.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/filter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/filter.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/id.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/id.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/index.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/index.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/key-manytoone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/key-manytoone.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/key-property.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/key-property.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/manytoany.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/manytoany.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/manytomany.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/manytomany.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/manytoone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/manytoone.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/onetomany.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/onetomany.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/onetoone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/onetoone.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/parameter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/parameter.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/property.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/property.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/table.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/timestamp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/timestamp.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/version.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/orm2/version.gif -------------------------------------------------------------------------------- /orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/registration/warn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/plugin/core/org.jboss.tools.hibernate.xml/resources/images/registration/warn.gif -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.common/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = .,\ 4 | META-INF/ 5 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.common/src/org/jboss/tools/hibernate/orm/runtime/common/IFacade.java: -------------------------------------------------------------------------------- 1 | package org.jboss.tools.hibernate.orm.runtime.common; 2 | 3 | public interface IFacade { 4 | 5 | Object getTarget(); 6 | 7 | } 8 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.exp/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = .,\ 4 | META-INF/,\ 5 | plugin.xml,\ 6 | plugin.properties,\ 7 | lib/ -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.exp/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=exp -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_2/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=6.2 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_2/src/org/hibernate/tool/hbm2x/DAOExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | import org.hibernate.tool.internal.export.dao.DaoExporter; 4 | 5 | public class DAOExporter extends DaoExporter {} 6 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_2/src/org/hibernate/tool/hbm2x/DocExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class DocExporter extends org.hibernate.tool.internal.export.doc.DocExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_2/src/org/hibernate/tool/hbm2x/GenericExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class GenericExporter extends org.hibernate.tool.internal.export.common.GenericExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_2/src/org/hibernate/tool/hbm2x/QueryExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class QueryExporter extends org.hibernate.tool.internal.export.query.QueryExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_3/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=6.3 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_3/src/org/hibernate/tool/hbm2x/DAOExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | import org.hibernate.tool.internal.export.dao.DaoExporter; 4 | 5 | public class DAOExporter extends DaoExporter {} 6 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_3/src/org/hibernate/tool/hbm2x/DocExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class DocExporter extends org.hibernate.tool.internal.export.doc.DocExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_3/src/org/hibernate/tool/hbm2x/GenericExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class GenericExporter extends org.hibernate.tool.internal.export.common.GenericExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_3/src/org/hibernate/tool/hbm2x/QueryExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class QueryExporter extends org.hibernate.tool.internal.export.query.QueryExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_4/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=6.4 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_4/src/org/hibernate/tool/hbm2x/DAOExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | import org.hibernate.tool.internal.export.dao.DaoExporter; 4 | 5 | public class DAOExporter extends DaoExporter {} 6 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_4/src/org/hibernate/tool/hbm2x/DocExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class DocExporter extends org.hibernate.tool.internal.export.doc.DocExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_4/src/org/hibernate/tool/hbm2x/GenericExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class GenericExporter extends org.hibernate.tool.internal.export.common.GenericExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_4/src/org/hibernate/tool/hbm2x/QueryExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class QueryExporter extends org.hibernate.tool.internal.export.query.QueryExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_5/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=6.5 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_6/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=6.6 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_6/src/org/hibernate/tool/hbm2x/DAOExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | import org.hibernate.tool.internal.export.dao.DaoExporter; 4 | 5 | public class DAOExporter extends DaoExporter {} 6 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_6/src/org/hibernate/tool/hbm2x/DocExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class DocExporter extends org.hibernate.tool.internal.export.doc.DocExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_6/src/org/hibernate/tool/hbm2x/GenericExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class GenericExporter extends org.hibernate.tool.internal.export.common.GenericExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_6/src/org/hibernate/tool/hbm2x/QueryExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class QueryExporter extends org.hibernate.tool.internal.export.query.QueryExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_7_0/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=7.0 Preview -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_7_0/src/org/hibernate/tool/hbm2x/DAOExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | import org.hibernate.tool.internal.export.dao.DaoExporter; 4 | 5 | public class DAOExporter extends DaoExporter {} 6 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_7_0/src/org/hibernate/tool/hbm2x/DocExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class DocExporter extends org.hibernate.tool.internal.export.doc.DocExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_7_0/src/org/hibernate/tool/hbm2x/GenericExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class GenericExporter extends org.hibernate.tool.internal.export.common.GenericExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.orm.runtime.v_7_0/src/org/hibernate/tool/hbm2x/QueryExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class QueryExporter extends org.hibernate.tool.internal.export.query.QueryExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.common/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.common/src/org/jboss/tools/hibernate/runtime/common/IFacade.java: -------------------------------------------------------------------------------- 1 | package org.jboss.tools.hibernate.runtime.common; 2 | 3 | public interface IFacade extends org.jboss.tools.hibernate.orm.runtime.common.IFacade {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.spi/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.spi/src/org/jboss/tools/hibernate/runtime/spi/ICollectionMetadata.java: -------------------------------------------------------------------------------- 1 | package org.jboss.tools.hibernate.runtime.spi; 2 | 3 | public interface ICollectionMetadata { 4 | 5 | IType getElementType(); 6 | 7 | } 8 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.spi/src/org/jboss/tools/hibernate/runtime/spi/IHQLQueryPlan.java: -------------------------------------------------------------------------------- 1 | package org.jboss.tools.hibernate.runtime.spi; 2 | 3 | 4 | public interface IHQLQueryPlan { 5 | 6 | IQueryTranslator[] getTranslators(); 7 | 8 | } 9 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.spi/src/org/jboss/tools/hibernate/runtime/spi/IProgressListener.java: -------------------------------------------------------------------------------- 1 | package org.jboss.tools.hibernate.runtime.spi; 2 | 3 | public interface IProgressListener { 4 | 5 | void startSubTask(String name); 6 | 7 | } 8 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_3_5/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=3.5 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_3_6/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=3.6 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_4_0/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=4.0 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_4_3/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=4.3 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_5_0/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=5.0 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_5_1/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=5.1 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_5_2/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=5.2 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_5_3/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=5.3 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_5_4/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=5.4 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_5_5/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=5.5 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_5_6/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=5.6 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_6_0/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=6.0 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_6_0/src/org/hibernate/tool/hbm2x/DAOExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | import org.hibernate.tool.internal.export.dao.DaoExporter; 4 | 5 | public class DAOExporter extends DaoExporter {} 6 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_6_0/src/org/hibernate/tool/hbm2x/DocExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class DocExporter extends org.hibernate.tool.internal.export.doc.DocExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_6_0/src/org/hibernate/tool/hbm2x/GenericExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class GenericExporter extends org.hibernate.tool.internal.export.common.GenericExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_6_0/src/org/hibernate/tool/hbm2x/QueryExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class QueryExporter extends org.hibernate.tool.internal.export.query.QueryExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_6_1/plugin.properties: -------------------------------------------------------------------------------- 1 | hibernate.version=6.1 -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_6_1/src/org/hibernate/tool/hbm2x/DAOExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | import org.hibernate.tool.internal.export.dao.DaoExporter; 4 | 5 | public class DAOExporter extends DaoExporter {} 6 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_6_1/src/org/hibernate/tool/hbm2x/DocExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class DocExporter extends org.hibernate.tool.internal.export.doc.DocExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_6_1/src/org/hibernate/tool/hbm2x/GenericExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class GenericExporter extends org.hibernate.tool.internal.export.common.GenericExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/runtime/org.jboss.tools.hibernate.runtime.v_6_1/src/org/hibernate/tool/hbm2x/QueryExporter.java: -------------------------------------------------------------------------------- 1 | package org.hibernate.tool.hbm2x; 2 | 3 | public class QueryExporter extends org.hibernate.tool.internal.export.query.QueryExporter {} 4 | -------------------------------------------------------------------------------- /orm/plugin/ui/org.jboss.tools.hibernate.orm.ui/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = .,\ 4 | META-INF/,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /orm/test/core/org.hibernate.eclipse.jdt.ui.test/plugin.properties: -------------------------------------------------------------------------------- 1 | #Properties file for org.hibernate.eclipse.jdt.ui.test 2 | Bundle-Vendor.0 = Red Hat 3 | Bundle-Name.0 = Hibernate Tools JDT integration Test Plug-in -------------------------------------------------------------------------------- /orm/test/core/org.hibernate.eclipse.jdt.ui.test/testresources/ejb3-persistence.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/test/core/org.hibernate.eclipse.jdt.ui.test/testresources/ejb3-persistence.jar -------------------------------------------------------------------------------- /orm/test/core/org.hibernate.eclipse.jdt.ui.test/testresources/hsqldb.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbosstools/jbosstools-hibernate/d594564274b8d2401025e2ef2e5067508d54d027/orm/test/core/org.hibernate.eclipse.jdt.ui.test/testresources/hsqldb.jar -------------------------------------------------------------------------------- /orm/test/core/org.jboss.tools.hibernate.jpt.core.test/plugin.properties: -------------------------------------------------------------------------------- 1 | #Properties file for org.jboss.tools.hibernate.jpt.core.test 2 | Bundle-Vendor.0 = Red Hat 3 | Bundle-Name.0 = Hibernate Tools JPT integration Test Plug-in -------------------------------------------------------------------------------- /orm/test/core/org.jboss.tools.hibernate.jpt.core.test/res/testHibernateJpaOrmProject/src/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /orm/test/core/org.jboss.tools.hibernate.jpt.core.test/res/testHibernateJpaProject/src/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /orm/test/core/org.jboss.tools.hibernate.orm.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | plugin.properties,\ 5 | .,\ 6 | lib/ -------------------------------------------------------------------------------- /orm/test/core/org.jboss.tools.hibernate.orm.test/plugin.properties: -------------------------------------------------------------------------------- 1 | #Properties file for org.hibernate.eclipse.jdt.ui.test 2 | Bundle-Vendor.0 = Red Hat 3 | Bundle-Name.0 = Hibernate ORM Tools Test Plug-in -------------------------------------------------------------------------------- /orm/test/core/org.jboss.tools.hibernate.orm.test/res/core/mixed/Folder.java: -------------------------------------------------------------------------------- 1 | //$Id$ 2 | 3 | package copy.mixed; 4 | 5 | 6 | /** 7 | * @author Gavin King 8 | */ 9 | 10 | public class Folder extends Item { 11 | 12 | } 13 | 14 | -------------------------------------------------------------------------------- /orm/test/core/org.jboss.tools.hibernate.orm.test/res/core/onetoone/joined/Entity.java: -------------------------------------------------------------------------------- 1 | //$Id$ 2 | package core.onetoone.joined; 3 | 4 | /** 5 | * @author Gavin King 6 | */ 7 | public class Entity { 8 | public String name; 9 | } 10 | -------------------------------------------------------------------------------- /orm/test/core/org.jboss.tools.hibernate.orm.test/res/core/onetoone/joined/Org.java: -------------------------------------------------------------------------------- 1 | //$Id$ 2 | package core.onetoone.joined; 3 | 4 | 5 | /** 6 | * @author Gavin King 7 | */ 8 | public class Org extends Entity { 9 | } 10 | -------------------------------------------------------------------------------- /orm/test/core/org.jboss.tools.hibernate.orm.test/res/core/onetoone/optional/Entity.java: -------------------------------------------------------------------------------- 1 | package core.onetoone.optional; 2 | 3 | /** 4 | * @author Gavin King 5 | */ 6 | public class Entity { 7 | public String name; 8 | } 9 | -------------------------------------------------------------------------------- /orm/test/core/org.jboss.tools.hibernate.orm.test/res/core/onetoone/optional/Org.java: -------------------------------------------------------------------------------- 1 | package core.onetoone.optional; 2 | 3 | 4 | /** 5 | * @author Gavin King 6 | */ 7 | public class Org extends Entity { 8 | } 9 | -------------------------------------------------------------------------------- /orm/test/core/org.jboss.tools.hibernate.orm.test/res/core/onetoone/singletable/Entity.java: -------------------------------------------------------------------------------- 1 | //$Id$ 2 | package core.onetoone.singletable; 3 | 4 | /** 5 | * @author Gavin King 6 | */ 7 | public class Entity { 8 | public String name; 9 | } 10 | -------------------------------------------------------------------------------- /orm/test/core/org.jboss.tools.hibernate.orm.test/res/core/usercollection/basic/IMyList.java: -------------------------------------------------------------------------------- 1 | package core.usercollection.basic; 2 | 3 | import java.util.List; 4 | 5 | public interface IMyList extends List { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /orm/test/core/org.jboss.tools.hibernate.orm.test/res/jpa/springframework/samples/petclinic/PetType.java: -------------------------------------------------------------------------------- 1 | package jpa.springframework.samples.petclinic; 2 | 3 | /** 4 | * @author Juergen Hoeller 5 | */ 6 | public class PetType extends NamedEntity { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.orm.runtime.common.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.orm.runtime.exp.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_2.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_3.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_4.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_5.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.orm.runtime.v_6_6.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.orm.runtime.v_7_0.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.runtime.spi.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.runtime.v_3_5.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | lib/ 6 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.runtime.v_3_6.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | lib/ 6 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.runtime.v_4_0.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | lib/ 6 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.runtime.v_4_3.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.runtime.v_5_0.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.runtime.v_5_1.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | lib/ 6 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.runtime.v_5_2.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.runtime.v_5_3.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.runtime.v_5_4.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.runtime.v_5_5.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.runtime.v_5_6.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.runtime.v_6_0.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/runtime/org.jboss.tools.hibernate.runtime.v_6_1.test/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /orm/test/util/org.jboss.tools.hibernate.reddeer/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | src.includes = * 3 | src.excludes = src/ 4 | bin.includes = META-INF/,\ 5 | . 6 | -------------------------------------------------------------------------------- /search/plugin/core/org.jboss.tools.hibernate.search/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml -------------------------------------------------------------------------------- /search/plugin/runtime/org.jboss.tools.hibernate.search.runtime.common/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = bin/ 3 | bin.includes = META-INF/,\ 4 | . 5 | -------------------------------------------------------------------------------- /search/plugin/runtime/org.jboss.tools.hibernate.search.runtime.spi/build.properties: -------------------------------------------------------------------------------- 1 | source.. = src/ 2 | output.. = target/classes/ 3 | bin.includes = META-INF/,\ 4 | .,\ 5 | plugin.xml 6 | -------------------------------------------------------------------------------- /search/plugin/runtime/org.jboss.tools.hibernate.search.runtime.spi/src/org/jboss/tools/hibernate/search/runtime/spi/IAnalyzer.java: -------------------------------------------------------------------------------- 1 | package org.jboss.tools.hibernate.search.runtime.spi; 2 | 3 | public interface IAnalyzer { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /search/plugin/runtime/org.jboss.tools.hibernate.search.runtime.spi/src/org/jboss/tools/hibernate/search/runtime/spi/ILuceneQuery.java: -------------------------------------------------------------------------------- 1 | package org.jboss.tools.hibernate.search.runtime.spi; 2 | 3 | public interface ILuceneQuery { 4 | 5 | } 6 | --------------------------------------------------------------------------------