Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Lorenzo2017-02-01 10:58:10 +0000
committervincent lorenzo2017-02-02 10:21:38 +0000
commitf1d6a5cf48ab23d452c40bd22b5ead41460f8dde (patch)
tree95e39ee0e43eafd35827c2b9ffeee700a1c4dcc9 /plugins/doc
parente2911f0576dc2496838dfc9431e771065408e0a8 (diff)
downloadorg.eclipse.papyrus-f1d6a5cf48ab23d452c40bd22b5ead41460f8dde.tar.gz
org.eclipse.papyrus-f1d6a5cf48ab23d452c40bd22b5ead41460f8dde.tar.xz
org.eclipse.papyrus-f1d6a5cf48ab23d452c40bd22b5ead41460f8dde.zip
Fix Rhapsody documentation: just replace a </null> by </code>
Change-Id: I796f02a744abecc655b94fef82740fd64a8f799b Signed-off-by: Vincent Lorenzo <vincent.lorenzo@cea.fr>
Diffstat (limited to 'plugins/doc')
-rwxr-xr-xplugins/doc/org.eclipse.papyrus.migration.rhapsody.doc/src/site/mediawiki/rhapsodyMigrationDev.mediawiki2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/doc/org.eclipse.papyrus.migration.rhapsody.doc/src/site/mediawiki/rhapsodyMigrationDev.mediawiki b/plugins/doc/org.eclipse.papyrus.migration.rhapsody.doc/src/site/mediawiki/rhapsodyMigrationDev.mediawiki
index 65d7208df22..5c007568b39 100755
--- a/plugins/doc/org.eclipse.papyrus.migration.rhapsody.doc/src/site/mediawiki/rhapsodyMigrationDev.mediawiki
+++ b/plugins/doc/org.eclipse.papyrus.migration.rhapsody.doc/src/site/mediawiki/rhapsodyMigrationDev.mediawiki
@@ -96,7 +96,7 @@ It is possible to use breakpoint to debug QVTo transformation, but in this case
===QVTo Tricks===
Here, we describe the main QVTo keyword to know:
*<code>mapping</code> it allows to declare a mapping method between two objects. It can have parameter. The resulting object is created before the first line of the mapping. If you want avoid to create a new object, you can look it for the object to return using the <code>init{your code}</code> block. Calling a given mapping for a given object will create a new object the first time and will return it other time. No new object will be created calling a given mapping several time with the same parameters.
-*<code>init{your code}</code> it allows to assign the result without creating an object. If at the end of this block, the result is <code>null</null>, the object will be created.
+*<code>init{your code}</code> it allows to assign the result without creating an object. If at the end of this block, the result is <code>null</code>, the object will be created.
*<code>disjuncts</code> it allows to declare a method dispatching an action to one of the others declared method.
*<code>when</code> it allows to define a condition to allow the mapping (always used by a mapping called by a disjuncts mapping)
*<code>result</code> keyword defining the result of a mapping

Back to the top