diff --git a/docs/metaData/MetaDataProduction.adoc b/docs/metaData/MetaDataProduction.adoc index 4098def7..f19babf9 100644 --- a/docs/metaData/MetaDataProduction.adoc +++ b/docs/metaData/MetaDataProduction.adoc @@ -61,7 +61,7 @@ public QInstance defineQInstance() } ---- -=== Multi-method Omni-Provider +== Multi-method Omni-Provider The next evolution of meta-data production comes by just applying some basic better-engineering principles, and splitting up from a single method that constructs all the things, to at least @@ -99,7 +99,7 @@ public QBackendMetaData defineBackendMetaData() // left as an exercise for the reader ---- -=== Multi-class Providers +== Multi-class Providers Then the next logical evolution would be to put each of these single meta-data producing objects into its own class, along with calls to those classes. This gets us away from the @@ -142,7 +142,7 @@ public class BackendMetaDataProvider // left as an exercise for the reader ---- -=== MetaDataProducerInterface +== MetaDataProducerInterface As the size of your application grows, if you're doing per-object meta-data providers, you may find it burdensome, when adding a new object to your instance, to have to write code for it in two places - @@ -196,7 +196,7 @@ public class BackendMetaDataProducer implements MetaDataProducerInterface