You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by gp...@apache.org on 2013/05/26 18:16:16 UTC

svn commit: r1486426 - /incubator/deltaspike/site/trunk/content/deltaspike/jsf.mdtext

Author: gpetracek
Date: Sun May 26 16:16:16 2013
New Revision: 1486426

URL: http://svn.apache.org/r1486426
Log:
updated content

Modified:
    incubator/deltaspike/site/trunk/content/deltaspike/jsf.mdtext

Modified: incubator/deltaspike/site/trunk/content/deltaspike/jsf.mdtext
URL: http://svn.apache.org/viewvc/incubator/deltaspike/site/trunk/content/deltaspike/jsf.mdtext?rev=1486426&r1=1486425&r2=1486426&view=diff
==============================================================================
--- incubator/deltaspike/site/trunk/content/deltaspike/jsf.mdtext (original)
+++ incubator/deltaspike/site/trunk/content/deltaspike/jsf.mdtext Sun May 26 16:16:16 2013
@@ -608,7 +608,7 @@ For folders it's optional to implement t
 ## Advanced API usages
 [TODO]
 
-Creating Custom Meta-Data via @ViewMetaData
+### Creating Custom Meta-Data via @ViewMetaData
 This meta-annotation allows to create custom view-meta-data which can be used for view-configs. Per default meta-data of a lower level overrides meta-data on a higher level which has the same type. That can be customized via annotating the final annotation as a whole via `@Aggregated(true)`.
 
     :::java
@@ -627,7 +627,7 @@ By just using `@InfoPage` in view-config
     ViewConfigDescriptor viewConfigDescriptor = viewConfigResolver.getViewConfigDescriptor(Pages.Index.class);
     List<InfoPage> metaDataList = viewConfigDescriptor.getMetaData(InfoPage.class)
 
-Creating Custom Callbacks via @ViewMetaData
+### Creating Custom Callbacks via @ViewMetaData
 
 Via a custom ConfigPreProcessor it's possible to register custom callbacks dynamically.
 The following listing shows a view-config which adds a simple callback including the corresponding `ConfigPreProcessor` and `ExecutableCallbackDescriptor`.