Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 210641
Collapse All | Expand All

(-)src/org/eclipse/hyades/internal/execution/recorder/local/RecorderClient.java (-6 / +6 lines)
Lines 501-515 Link Here
501
		String appAdapterInitString = "-1";
501
		String appAdapterInitString = "-1";
502
		
502
		
503
		/* jn - initializing application will now be done locally */
503
		/* jn - initializing application will now be done locally */
504
		String commandMessage = "Init "+theRecorder.getConfigParams(); //$NON-NLS-1$
504
		String commandMessage = "Init (" + theRecorder.getConfigParams() + ")"; //$NON-NLS-1$
505
		String displayMessage = "Init";
505
		String displayMessage = "Init";
506
		sendStatusMessageToControlView(TestCorePluginResourceBundle.RecorderClient_SENDING_COMMAND_STATUS_MESSAGE+displayMessage); 
506
		sendStatusMessageToControlView(TestCorePluginResourceBundle.RecorderClient_SENDING_COMMAND_STATUS_MESSAGE + " " + displayMessage); 
507
		sendMessage(commandMessage);
507
		sendMessage(commandMessage);
508
		
508
		
509
		
509
		
510
		commandMessage = "StartRecording"; //$NON-NLS-1$
510
		commandMessage = "StartRecording"; //$NON-NLS-1$
511
		displayMessage = "StartRecording";
511
		displayMessage = "StartRecording";
512
		sendStatusMessageToControlView(TestCorePluginResourceBundle.RecorderClient_SENDING_COMMAND_STATUS_MESSAGE+displayMessage); 
512
		sendStatusMessageToControlView(TestCorePluginResourceBundle.RecorderClient_SENDING_COMMAND_STATUS_MESSAGE + " " + displayMessage); 
513
		sendMessage(commandMessage);		
513
		sendMessage(commandMessage);		
514
		
514
		
515
		String appAdapter = theRecorder.getApplicationAdapterID();
515
		String appAdapter = theRecorder.getApplicationAdapterID();
Lines 520-528 Link Here
520
		}
520
		}
521
		if(appAdapterAgentClasspath != null && !appAdapterAgentClasspath.equals("-1")) //$NON-NLS-1$
521
		if(appAdapterAgentClasspath != null && !appAdapterAgentClasspath.equals("-1")) //$NON-NLS-1$
522
		{			
522
		{			
523
			commandMessage = "StartApp "+appAdapterAgentClasspath+";"+appAdapterInitString; //$NON-NLS-1$ //$NON-NLS-2$
523
			commandMessage = "StartApp '"+appAdapterAgentClasspath+"' ("+appAdapterInitString+")"; //$NON-NLS-1$ //$NON-NLS-2$
524
			displayMessage = "StartApp "+RecorderAppAdapterFactory.getInstance().getAdapterName(appAdapter);
524
			displayMessage = "StartApp '"+RecorderAppAdapterFactory.getInstance().getAdapterName(appAdapter)+"'";
525
			sendStatusMessageToControlView(TestCorePluginResourceBundle.RecorderClient_SENDING_COMMAND_STATUS_MESSAGE+displayMessage); 
525
			sendStatusMessageToControlView(TestCorePluginResourceBundle.RecorderClient_SENDING_COMMAND_STATUS_MESSAGE + " " + displayMessage); 
526
			//sendMessage(commandMessage);
526
			//sendMessage(commandMessage);
527
			startApplication(RecorderAppAdapterFactory.getInstance().getAdapterConfigElement(theRecorder.getApplicationAdapterID()),
527
			startApplication(RecorderAppAdapterFactory.getInstance().getAdapterConfigElement(theRecorder.getApplicationAdapterID()),
528
			        appAdapterInitString);
528
			        appAdapterInitString);
(-)src/org/eclipse/hyades/test/core/internal/resources/messages.properties (-3 / +3 lines)
Lines 31-43 Link Here
31
_EXC_AbstractLaunchConfigurationDelegate_modeNotSupported=IWAT4040E The launch mode "{0}" is not supported for the test specified in the launch configuration
31
_EXC_AbstractLaunchConfigurationDelegate_modeNotSupported=IWAT4040E The launch mode "{0}" is not supported for the test specified in the launch configuration
32
TestExecutionProcess_testProcess=Test
32
TestExecutionProcess_testProcess=Test
33
33
34
RecorderClient_RECORDING_COMPLETE_MESSAGE=Recording completed
34
RecorderClient_RECORDING_COMPLETE_MESSAGE=Recording completed.
35
RecorderClient_Test_generation_started_with_generator___4=Test generation started with generator:
35
RecorderClient_Test_generation_started_with_generator___4=Test generation started with generator:
36
RecorderClient_TEST_TO_BE_GENERATED=Test to be generated:
36
RecorderClient_TEST_TO_BE_GENERATED=Test to be generated:
37
RecorderClient_TEST_GENERATION_COMPLETE=Test generation completed.
37
RecorderClient_TEST_GENERATION_COMPLETE=Test generation completed.
38
RecorderClient_TEST_GENERATION_ERRORS=IWAT3028E Test generation completed with error(s).
38
RecorderClient_TEST_GENERATION_ERRORS=IWAT3028E Test generation completed with error(s).
39
RecorderClient_UNABLE_TO_GENERATE_NO_TRACE_FILE=IWAT3029E Unable to generate test as trace file does not exist.
39
RecorderClient_UNABLE_TO_GENERATE_NO_TRACE_FILE=IWAT3029E Unable to generate test as trace file does not exist.
40
RecorderClient_RECORDING_STARTED_STATUS_MESSAGE=Recording Started.
40
RecorderClient_RECORDING_STARTED_STATUS_MESSAGE=Recording started.
41
RecorderClient_START_RECORDING_ABORTED=Start recording aborted.
41
RecorderClient_START_RECORDING_ABORTED=Start recording aborted.
42
RecorderClient_RECORDER_ERROR=Recorder Harness Error
42
RecorderClient_RECORDER_ERROR=Recorder Harness Error
43
RecorderClient_START_RECORDING_ABORTED_DUE_TO_EXCEPTION_STATUS_MESSAGE=IWAT3031E Start Recording aborted due to exception:
43
RecorderClient_START_RECORDING_ABORTED_DUE_TO_EXCEPTION_STATUS_MESSAGE=IWAT3031E Start Recording aborted due to exception:
Lines 46-52 Link Here
46
RecorderClient_RECORDER_JARS_NOT_DEPLOYED=The Recorder Jar files were not deployed and therefore are not on the Classpath of Agent Controller. 
46
RecorderClient_RECORDER_JARS_NOT_DEPLOYED=The Recorder Jar files were not deployed and therefore are not on the Classpath of Agent Controller. 
47
RecorderClient_CANT_FIND_RECORDER_JARS_TO_DEPLOY=No Recorder Jar files are available for deployment
47
RecorderClient_CANT_FIND_RECORDER_JARS_TO_DEPLOY=No Recorder Jar files are available for deployment
48
48
49
RecorderClient_SENDING_COMMAND_STATUS_MESSAGE=Sending command
49
RecorderClient_SENDING_COMMAND_STATUS_MESSAGE=Sending command:
50
RecorderClient_CONNECTING_TO_RASERVER_STATUS_MESSAGE=Connecting to Agent Controller on host ''{0}'' and port ''{1}''.
50
RecorderClient_CONNECTING_TO_RASERVER_STATUS_MESSAGE=Connecting to Agent Controller on host ''{0}'' and port ''{1}''.
51
RecorderClient_STATUS_STOPPED=Stopped
51
RecorderClient_STATUS_STOPPED=Stopped
52
RecorderClient_STATUS_INIT=Initializing...
52
RecorderClient_STATUS_INIT=Initializing...

Return to bug 210641