You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@etch.apache.org by sc...@apache.org on 2009/01/22 19:32:13 UTC

svn commit: r736737 - in /incubator/etch/trunk: binding-csharp/compiler/src/main/resources/etch/bindings/csharp/compiler/vf.vm binding-java/compiler/src/main/resources/etch/bindings/java/compiler/vf.vm

Author: sccomer
Date: Thu Jan 22 10:32:13 2009
New Revision: 736737

URL: http://svn.apache.org/viewvc?rev=736737&view=rev
Log:
fix for ETCH-24: The message direction is always "server" for the result_method messages in the java-binding valuefactory (also csharp)

Modified:
    incubator/etch/trunk/binding-csharp/compiler/src/main/resources/etch/bindings/csharp/compiler/vf.vm
    incubator/etch/trunk/binding-java/compiler/src/main/resources/etch/bindings/java/compiler/vf.vm

Modified: incubator/etch/trunk/binding-csharp/compiler/src/main/resources/etch/bindings/csharp/compiler/vf.vm
URL: http://svn.apache.org/viewvc/incubator/etch/trunk/binding-csharp/compiler/src/main/resources/etch/bindings/csharp/compiler/vf.vm?rev=736737&r1=736736&r2=736737&view=diff
==============================================================================
--- incubator/etch/trunk/binding-csharp/compiler/src/main/resources/etch/bindings/csharp/compiler/vf.vm (original)
+++ incubator/etch/trunk/binding-csharp/compiler/src/main/resources/etch/bindings/csharp/compiler/vf.vm Thu Jan 22 10:32:13 2009
@@ -68,7 +68,7 @@
 	{
 #foreach ( $n in $intf.iterator() )
 #if ($n.isMessage())
-		${n.vname( $helper )}.SetDirection( Direction.$n.getMessageDirection() );
+		${n.vname( $helper )}.SetDirection( Direction.$n.msgDir() );
 #if (!$n.isHidden())
 #if ($n.isQueuedAsyncReceiver())
 		${n.vname( $helper )}.SetAsyncMode( AsyncMode.QUEUED );

Modified: incubator/etch/trunk/binding-java/compiler/src/main/resources/etch/bindings/java/compiler/vf.vm
URL: http://svn.apache.org/viewvc/incubator/etch/trunk/binding-java/compiler/src/main/resources/etch/bindings/java/compiler/vf.vm?rev=736737&r1=736736&r2=736737&view=diff
==============================================================================
--- incubator/etch/trunk/binding-java/compiler/src/main/resources/etch/bindings/java/compiler/vf.vm (original)
+++ incubator/etch/trunk/binding-java/compiler/src/main/resources/etch/bindings/java/compiler/vf.vm Thu Jan 22 10:32:13 2009
@@ -96,7 +96,7 @@
 	{
 #foreach ( $n in $intf.iterator() )
 #if ($n.isMessage())
-		${n.vname( $helper )}.setDirection( Direction.$n.getMessageDirection() );
+		${n.vname( $helper )}.setDirection( Direction.$n.msgDir() );
 #if (!$n.isHidden())
 #if ($n.isQueuedAsyncReceiver())
 		${n.vname( $helper )}.setAsyncMode( AsyncMode.QUEUED );