[openrtm-commit:00027] r169 - in trunk/rtmtools/jp.go.aist.rtm.systemeditor: META-INF src/jp/go/aist/rtm/systemeditor/ui/dialog

openrtm at openrtm.org openrtm at openrtm.org
Mon May 2 18:47:21 JST 2011


Author: ta
Date: 2011-05-02 18:47:20 +0900 (Mon, 02 May 2011)
New Revision: 169

Modified:
   trunk/rtmtools/jp.go.aist.rtm.systemeditor/META-INF/MANIFEST.MF
   trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/dialog/DataConnectorCreaterDialog.java
Log:
RTSE updates.

- change default buffer length. (0->8)

Modified: trunk/rtmtools/jp.go.aist.rtm.systemeditor/META-INF/MANIFEST.MF
===================================================================
--- trunk/rtmtools/jp.go.aist.rtm.systemeditor/META-INF/MANIFEST.MF	2011-04-28 03:04:05 UTC (rev 168)
+++ trunk/rtmtools/jp.go.aist.rtm.systemeditor/META-INF/MANIFEST.MF	2011-05-02 09:47:20 UTC (rev 169)
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %pluginName
 Bundle-SymbolicName: jp.go.aist.rtm.systemeditor;singleton:=true
-Bundle-Version: 1.1.0.v20110428
+Bundle-Version: 1.1.0.v20110502
 Bundle-Activator: jp.go.aist.rtm.systemeditor.RTSystemEditorPlugin
 Bundle-Localization: plugin
 Require-Bundle: 

Modified: trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/dialog/DataConnectorCreaterDialog.java
===================================================================
--- trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/dialog/DataConnectorCreaterDialog.java	2011-04-28 03:04:05 UTC (rev 168)
+++ trunk/rtmtools/jp.go.aist.rtm.systemeditor/src/jp/go/aist/rtm/systemeditor/ui/dialog/DataConnectorCreaterDialog.java	2011-05-02 09:47:20 UTC (rev 169)
@@ -680,7 +680,7 @@
 			connectorProfile.setOutportBufferEmptyPolicy(value);
 			//
 			if (connectorProfile.getOutportBufferLength() == null) {
-				connectorProfile.setOutportBufferLength(0);
+				connectorProfile.setOutportBufferLength(8);
 			}
 			value = connectorProfile.getOutportBufferLength().toString();
 			ob.lengthText.setText(value);
@@ -709,7 +709,7 @@
 			connectorProfile.setInportBufferEmptyPolicy(value);
 			//
 			if (connectorProfile.getInportBufferLength() == null) {
-				connectorProfile.setInportBufferLength(0);
+				connectorProfile.setInportBufferLength(8);
 			}
 			value = connectorProfile.getInportBufferLength().toString();
 			ib.lengthText.setText(value);



More information about the openrtm-commit mailing list