You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2014/04/05 10:06:07 UTC

svn commit: r1585015 - /isis/site/trunk/content/more-advanced-topics/metamodel-finetuning-the-programming-model.md

Author: danhaywood
Date: Sat Apr  5 08:06:06 2014
New Revision: 1585015

URL: http://svn.apache.org/r1585015
Log:
fine tuning metamodel

Modified:
    isis/site/trunk/content/more-advanced-topics/metamodel-finetuning-the-programming-model.md

Modified: isis/site/trunk/content/more-advanced-topics/metamodel-finetuning-the-programming-model.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/more-advanced-topics/metamodel-finetuning-the-programming-model.md?rev=1585015&r1=1585014&r2=1585015&view=diff
==============================================================================
--- isis/site/trunk/content/more-advanced-topics/metamodel-finetuning-the-programming-model.md (original)
+++ isis/site/trunk/content/more-advanced-topics/metamodel-finetuning-the-programming-model.md Sat Apr  5 08:06:06 2014
@@ -48,6 +48,8 @@ isis.reflector.facets.include=org.apache
 
 To include/exclude more than one `FacetFactory`, specify as a comma-separated list.  And if you want to dig into this in more detail, the code that implements this logic is [JavaReflectorInstallerNoDecorators](https://github.com/apache/isis/blob/master/core/metamodel/src/main/java/org/apache/isis/progmodels/dflt/JavaReflectorInstallerNoDecorators.java).
 
+> This [thread](http://isis.markmail.org/thread/472c3mrvcgnripst) from the users mailing list (in Apr 2014) shows a typical customization.
+
 ### Specifying a new programming model
 
 To specify a completely new programming model, you'll first need an  implementation of `ProgrammingModel`.  One option is to subclass from `ProgammingModelFacetsJava5`; in your subclass you could remove any `FacetFactory`s that you wanted to exclude, as well as registering your own implementations.