From 713b1a82cf19e7edc281239771fb12027063ab0a Mon Sep 17 00:00:00 2001
From: Gavin
Date: Tue, 27 Dec 2022 17:33:51 +0100
Subject: [PATCH] fix indenting
---
hibernate-core/src/main/javadoc/overview.html | 88 +++++++++----------
1 file changed, 44 insertions(+), 44 deletions(-)
diff --git a/hibernate-core/src/main/javadoc/overview.html b/hibernate-core/src/main/javadoc/overview.html
index a91e9b87ef..a63b980138 100644
--- a/hibernate-core/src/main/javadoc/overview.html
+++ b/hibernate-core/src/main/javadoc/overview.html
@@ -10,21 +10,21 @@
Hibernate is a library for object/relation mapping (ORM). It provides:
-
- -
- a native API centered around {@link org.hibernate.SessionFactory} and
- {@link org.hibernate.Session},
-
- -
- an implementation of the Java (or Jakarta) Persistence API (JPA),
- where the equivalent central interfaces are {@link jakarta.persistence.EntityManagerFactory}
- and {@link jakarta.persistence.EntityManager}, and
-
- -
- a set of mapping annotations which augment the O/R mapping annotations defined
- by JPA, and which may be used with either API.
-
-
+
+ -
+ a native API centered around {@link org.hibernate.SessionFactory} and
+ {@link org.hibernate.Session},
+
+ -
+ an implementation of the Java (or Jakarta) Persistence API (JPA),
+ where the equivalent central interfaces are {@link jakarta.persistence.EntityManagerFactory}
+ and {@link jakarta.persistence.EntityManager}, and
+
+ -
+ a set of mapping annotations which augment the O/R mapping annotations defined
+ by JPA, and which may be used with either API.
+
+
Native API
@@ -32,13 +32,13 @@
Along with {@link org.hibernate.SessionFactory} and {@link org.hibernate.Session}, applications
using the native API will often make use of the following interfaces:
-
- - {@link org.hibernate.cfg.Configuration} to configure and bootstrap Hibernate,
- - {@link org.hibernate.StatelessSession} for processes involving many entity instances,
- - {@link org.hibernate.Cache} to manage the second-level cache,
- - {@link org.hibernate.Transaction} to control local transactions, and
- - {@link org.hibernate.query.Query} to execute HQL queries.
-
+
+ - {@link org.hibernate.cfg.Configuration} to configure and bootstrap Hibernate,
+ - {@link org.hibernate.StatelessSession} for processes involving many entity instances,
+ - {@link org.hibernate.Cache} to manage the second-level cache,
+ - {@link org.hibernate.Transaction} to control local transactions, and
+ - {@link org.hibernate.query.Query} to execute HQL queries.
+
JPA
@@ -74,28 +74,28 @@
The organization of code into packages is based on the following classification:
-
- -
- API packages include classes and interfaces which are used directly by
- a typical application. These packages never have
spi
nor internal
- in their name, and are not under the namespace org.hibernate.testing
.
-
- -
- SPI packages include classes and interfaces which are used by integrators,
- library developers, and framework developers to develop extensions to Hibernate, or to alter
- its behavior in some way. These packages usually have
spi
in their name.
-
- -
- Some classes and interfaces are considered part of the internal implementation of Hibernate.
- This category includes packages with
internal
in their name, along with any class
- or interface annotated {@link org.hibernate.Internal @Internal}. Clients should avoid depending
- directly on these types.
-
- -
- The
hibernate-testing
module, and the namespace org.hibernate.testing
- contain testing support used in the Hibernate test suite.
-
-
+
+ -
+ API packages include classes and interfaces which are used directly by
+ a typical application. These packages never have
spi
nor internal
+ in their name, and are not under the namespace org.hibernate.testing
.
+
+ -
+ SPI packages include classes and interfaces which are used by integrators,
+ library developers, and framework developers to develop extensions to Hibernate, or to alter
+ its behavior in some way. These packages usually have
spi
in their name.
+
+ -
+ Some classes and interfaces are considered part of the internal implementation of Hibernate.
+ This category includes packages with
internal
in their name, along with any class
+ or interface annotated {@link org.hibernate.Internal @Internal}. Clients should avoid depending
+ directly on these types.
+
+ -
+ The
hibernate-testing
module, and the namespace org.hibernate.testing
+ contain testing support used in the Hibernate test suite.
+
+
More information