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 (-8 / +3 lines)
Lines 1-5 Link Here
1
/**********************************************************************
1
/**********************************************************************
2
 * Copyright (c) 2005,2007 IBM Corporation and others.
2
 * Copyright (c) 2005, 2008 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 608-618 Link Here
608
608
609
	protected boolean fForceRefresh = true;
609
	protected boolean fForceRefresh = true;
610
610
611
	/**
612
	 * The property page of the log interaction view
613
	 */
614
	protected LogInteractionPropertyPage propertyPage;
615
616
	protected IPartListener2 fPartListener = new IPartListener2()
611
	protected IPartListener2 fPartListener = new IPartListener2()
617
	{
612
	{
618
		public void partActivated(IWorkbenchPartReference ref)
613
		public void partActivated(IWorkbenchPartReference ref)
Lines 739-745 Link Here
739
		CorrelationHelper.getInstance().addJobChangeListener(this);
734
		CorrelationHelper.getInstance().addJobChangeListener(this);
740
		LogViewsPlugin.getDefault().addRecordPaneViewerListener(this);
735
		LogViewsPlugin.getDefault().addRecordPaneViewerListener(this);
741
		recordFilterSearch = new RecordFilterSearchUtil();
736
		recordFilterSearch = new RecordFilterSearchUtil();
742
		propertyPage = new LogInteractionPropertyPage(this);
743
		_findRecordSelection = false;
737
		_findRecordSelection = false;
744
	}
738
	}
745
739
Lines 3686-3692 Link Here
3686
	
3680
	
3687
	public IPropertySheetPage getPropertySheetEntry()
3681
	public IPropertySheetPage getPropertySheetEntry()
3688
	{
3682
	{
3689
		return propertyPage;
3683
		// need to create a TabbedPropertySheetPage instance every time to avoid NPE
3684
		return new LogInteractionPropertyPage(this);
3690
	}
3685
	}
3691
	
3686
	
3692
	public List getEventList()
3687
	public List getEventList()
(-)plugin.properties (-1 / +2 lines)
Lines 1-5 Link Here
1
############################################################################### 
1
############################################################################### 
2
# Copyright (c) 2007 IBM Corporation and others. 
2
# Copyright (c) 2007, 2008 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 70-75 Link Here
70
38 = Choose Columns
70
38 = Choose Columns
71
39 = Analysis Result
71
39 = Analysis Result
72
40 = Refresh Views
72
40 = Refresh Views
73
41 = Correlations
73
74
74
#############################################################
75
#############################################################
75
# Ali M.: Newly added messages as part of the RCP
76
# Ali M.: Newly added messages as part of the RCP
(-)plugin.xml (+14 lines)
Lines 396-401 Link Here
396
				category="tabs"
396
				category="tabs"
397
				id="org.eclipse.tptp.platform.log.views.AnalysisResultsTab"
397
				id="org.eclipse.tptp.platform.log.views.AnalysisResultsTab"
398
				label="%39"/>
398
				label="%39"/>
399
400
			<!-- The correlation tab -->
401
			<propertyTab
402
				category="tabs"
403
				id="org.eclipse.tptp.platform.log.views.CorrelationTab"
404
				label="%41"/>
399
		</propertyTabs>        
405
		</propertyTabs>        
400
	</extension>
406
	</extension>
401
   
407
   
Lines 494-499 Link Here
494
				tab="org.eclipse.tptp.platform.log.views.AnalysisResultsTab">
500
				tab="org.eclipse.tptp.platform.log.views.AnalysisResultsTab">
495
				<input type="org.eclipse.hyades.models.cbe.CBECommonBaseEvent"/>
501
				<input type="org.eclipse.hyades.models.cbe.CBECommonBaseEvent"/>
496
			</propertySection>
502
			</propertySection>
503
504
			<!-- The correlation section -->
505
			<propertySection
506
				class="org.eclipse.ui.views.properties.tabbed.AdvancedPropertySection"
507
				id="org.eclipse.tptp.platform.log.views.CorrelationSection"
508
				tab="org.eclipse.tptp.platform.log.views.CorrelationTab">
509
				<input type="org.eclipse.hyades.sd.logc.internal.uml2sd.LogAsyncMessage"/>
510
			</propertySection>
497
		</propertySections>
511
		</propertySections>
498
	</extension>
512
	</extension>
499
513
(-)META-INF/MANIFEST.MF (-1 / +2 lines)
Lines 12-18 Link Here
12
 org.eclipse.tptp.platform.common.ui,
12
 org.eclipse.tptp.platform.common.ui,
13
 org.eclipse.tptp.platform.common.ui.trace,
13
 org.eclipse.tptp.platform.common.ui.trace,
14
 org.eclipse.tptp.monitoring.logui,
14
 org.eclipse.tptp.monitoring.logui,
15
 org.eclipse.tptp.platform.la.core
15
 org.eclipse.tptp.platform.la.core,
16
 org.eclipse.ui.views.properties.tabbed;bundle-version="[3.2.0,4.0.0)"
16
Eclipse-LazyStart: true
17
Eclipse-LazyStart: true
17
Export-Package: org.eclipse.tptp.platform.lta.extensions.instances
18
Export-Package: org.eclipse.tptp.platform.lta.extensions.instances
18
Bundle-RequiredExecutionEnvironment: J2SE-1.4
19
Bundle-RequiredExecutionEnvironment: J2SE-1.4

Return to bug 194030