diff --git a/openjpa-project/src/doc/manual/ref_guide_runtime.xml b/openjpa-project/src/doc/manual/ref_guide_runtime.xml index 62a7c37f6..92e28cc78 100644 --- a/openjpa-project/src/doc/manual/ref_guide_runtime.xml +++ b/openjpa-project/src/doc/manual/ref_guide_runtime.xml @@ -1645,17 +1645,26 @@ suitable for single-JVM environments. - + You can use JPA SequenceGenerators to describe any built-in Seqs or your own Seq implementation. Set the sequenceName attribute to a plugin -string describing your choice. If specifying your own class name, you must -include parentheses at the end of the class name, even if you have no plugin -properties to configure. -(E.g., sequenceName="com.example.SeqImpl()". See - in the JPA Overview for +string describing your choice. + + +
+ +If specifying your own class name, you must include parentheses at the end of +the class name, even if you have no plugin properties to configure. +(E.g., sequenceName="com.example.SeqImpl()". + +
+ + +See in the JPA Overview for details on defining SequenceGenerators. - +
+ See for plugin string formatting.