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 194030 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/hyades/sd/logc/internal/loader/LogInteractions.java (-7 / +2 lines)
Lines 298-308 Link Here
298
298
299
	protected boolean fForceRefresh = true;
299
	protected boolean fForceRefresh = true;
300
300
301
	/**
302
	 * The property page of the log interaction view
303
	 */
304
	private LogInteractionPropertyPage propertyPage;
305
306
	protected IPartListener2 fPartListener = new IPartListener2()
301
	protected IPartListener2 fPartListener = new IPartListener2()
307
	{
302
	{
308
		public void partActivated(IWorkbenchPartReference ref)
303
		public void partActivated(IWorkbenchPartReference ref)
Lines 429-435 Link Here
429
		CorrelationHelper.getInstance().addJobChangeListener(this);
424
		CorrelationHelper.getInstance().addJobChangeListener(this);
430
		LogViewsPlugin.getDefault().addRecordPaneViewerListener(this);
425
		LogViewsPlugin.getDefault().addRecordPaneViewerListener(this);
431
		recordFilterSearch = new RecordFilterSearchUtil();
426
		recordFilterSearch = new RecordFilterSearchUtil();
432
		propertyPage = new LogInteractionPropertyPage(this);
433
		_findRecordSelection = false;
427
		_findRecordSelection = false;
434
	}
428
	}
435
429
Lines 3376-3382 Link Here
3376
	
3370
	
3377
	public IPropertySheetPage getPropertySheetEntry()
3371
	public IPropertySheetPage getPropertySheetEntry()
3378
	{
3372
	{
3379
		return propertyPage;
3373
		// need to create a TabbedPropertySheetPage instance every time to avoid NPE
3374
		return new LogInteractionPropertyPage(this);
3380
	}
3375
	}
3381
	
3376
	
3382
	public List getEventList()
3377
	public List getEventList()
(-)plugin.xml (+14 lines)
Lines 339-344 Link Here
339
				category="tabs"
339
				category="tabs"
340
				id="org.eclipse.tptp.platform.log.views.AnalysisResultsTab"
340
				id="org.eclipse.tptp.platform.log.views.AnalysisResultsTab"
341
				label="%39"/>
341
				label="%39"/>
342
343
			<!-- The correlation tab -->
344
			<propertyTab
345
				category="tabs"
346
				id="org.eclipse.tptp.platform.log.views.CorrelationTab"
347
				label="%41"/>
342
		</propertyTabs>        
348
		</propertyTabs>        
343
	</extension>
349
	</extension>
344
   
350
   
Lines 437-442 Link Here
437
				tab="org.eclipse.tptp.platform.log.views.AnalysisResultsTab">
443
				tab="org.eclipse.tptp.platform.log.views.AnalysisResultsTab">
438
				<input type="org.eclipse.hyades.models.cbe.CBECommonBaseEvent"/>
444
				<input type="org.eclipse.hyades.models.cbe.CBECommonBaseEvent"/>
439
			</propertySection>
445
			</propertySection>
446
447
			<!-- The correlation section -->
448
			<propertySection
449
				class="org.eclipse.ui.views.properties.tabbed.AdvancedPropertySection"
450
				id="org.eclipse.tptp.platform.log.views.CorrelationSection"
451
				tab="org.eclipse.tptp.platform.log.views.CorrelationTab">
452
				<input type="org.eclipse.hyades.sd.logc.internal.uml2sd.LogAsyncMessage"/>
453
			</propertySection>
440
		</propertySections>
454
		</propertySections>
441
	</extension>
455
	</extension>
442
456
(-)plugin.properties (-1 / +2 lines)
Lines 1-5 Link Here
1
############################################################################### 
1
############################################################################### 
2
# Copyright (c) 2005, 2006 IBM Corporation and others. 
2
# Copyright (c) 2005, 2007 IBM Corporation and others. 
3
# All rights reserved. This program and the accompanying materials 
3
# All rights reserved. This program and the accompanying materials 
4
# are made available under the terms of the Eclipse Public License v1.0 
4
# are made available under the terms of the Eclipse Public License v1.0 
5
# which accompanies this distribution, and is available at 
5
# which accompanies this distribution, and is available at 
Lines 63-68 Link Here
63
38 = Choose Columns
63
38 = Choose Columns
64
39 = Analysis Result
64
39 = Analysis Result
65
40 = Refresh Views
65
40 = Refresh Views
66
41 = Correlation
66
67
67
#############################################################
68
#############################################################
68
# Ali M.: Newly added messages as part of the RCP
69
# Ali M.: Newly added messages as part of the RCP

Return to bug 194030