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 143690
Collapse All | Expand All

(-)src/org/eclipse/tptp/platform/log/views/internal/navigator/LogNavigatorActionGroup.java (-5 / +7 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 256-261 Link Here
256
				menu.appendToGroup(INavigatorContribution.GROUP_DELETE,fAnalysisAction);
256
				menu.appendToGroup(INavigatorContribution.GROUP_DELETE,fAnalysisAction);
257
				
257
				
258
				menu.appendToGroup(INavigatorContribution.GROUP_SAVE,fLogNavigatorSaveAction);
258
				menu.appendToGroup(INavigatorContribution.GROUP_SAVE,fLogNavigatorSaveAction);
259
				menu.appendToGroup(INavigatorContribution.GROUP_SAVE,openEditCorrelationWizardAction);
259
				menu.appendToGroup(INavigatorContribution.GROUP_SAVE,fDeleteAction);					
260
				menu.appendToGroup(INavigatorContribution.GROUP_SAVE,fDeleteAction);					
260
			}
261
			}
261
			else if(sel instanceof IFile){
262
			else if(sel instanceof IFile){
Lines 306-315 Link Here
306
			}*/
307
			}*/
307
			
308
			
308
			
309
			
309
			else if(sel instanceof CorrelationContainerProxy){
310
// bug 143690
310
				menu.appendToGroup(INavigatorContribution.GROUP_PROPERTIES,openEditCorrelationWizardAction);
311
//			else if(sel instanceof CorrelationContainerProxy){
311
				
312
//				menu.appendToGroup(INavigatorContribution.GROUP_PROPERTIES,openEditCorrelationWizardAction);
312
			}
313
//				
314
//			}
313
		}
315
		}
314
316
315
		/* Ali M.: As part of the refactoring, the import action was taken out.
317
		/* Ali M.: As part of the refactoring, the import action was taken out.
(-)src/org/eclipse/tptp/platform/log/views/internal/messages.properties (-1 / +4 lines)
Lines 1-4 Link Here
1
# Copyright (c) 2006, 2007 IBM Corporation and others.
1
# Copyright (c) 2006, 2008 IBM Corporation and others.
2
# All rights reserved. This program and the accompanying materials
2
# All rights reserved. This program and the accompanying materials
3
# are made available under the terms of the Eclipse Public License v1.0
3
# are made available under the terms of the Eclipse Public License v1.0
4
# which accompanies this distribution, and is available at
4
# which accompanies this distribution, and is available at
Lines 449-454 Link Here
449
_406 = &Log viewer page size:
449
_406 = &Log viewer page size:
450
_407 = Selected filter(s) must have color.
450
_407 = Selected filter(s) must have color.
451
451
452
_500 = Edi&t...
453
_501 = Edit
454
452
COMMON_INFO = Information
455
COMMON_INFO = Information
453
456
454
REPORT_LOCATION_LBL = Location of the report:
457
REPORT_LOCATION_LBL = Location of the report:
(-)src/org/eclipse/tptp/platform/log/views/internal/LogViewsMessages.java (-1 / +4 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2007 IBM Corporation and others.
2
 * Copyright (c) 2000, 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 405-410 Link Here
405
	
405
	
406
	public static String _407;
406
	public static String _407;
407
407
408
	public static String _500;
409
	public static String _501;
410
408
	public static String COMMON_INFO;
411
	public static String COMMON_INFO;
409
		
412
		
410
	public static String REPORT_LOCATION_LBL;	
413
	public static String REPORT_LOCATION_LBL;	
(-)src/org/eclipse/tptp/platform/log/views/internal/navigator/actions/EditCorrAction.java (-4 / +5 lines)
Lines 1-5 Link Here
1
/**********************************************************************
1
/**********************************************************************
2
 * Copyright (c) 2005, 2006 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 18-23 Link Here
18
import org.eclipse.jface.viewers.IStructuredSelection;
18
import org.eclipse.jface.viewers.IStructuredSelection;
19
import org.eclipse.jface.wizard.WizardDialog;
19
import org.eclipse.jface.wizard.WizardDialog;
20
import org.eclipse.tptp.platform.common.ui.trace.internal.CommonUITraceMessages;
20
import org.eclipse.tptp.platform.common.ui.trace.internal.CommonUITraceMessages;
21
import org.eclipse.tptp.platform.log.views.internal.LogViewsMessages;
21
import org.eclipse.tptp.platform.log.views.internal.LogViewsPlugin;
22
import org.eclipse.tptp.platform.log.views.internal.LogViewsPlugin;
22
import org.eclipse.tptp.platform.log.views.internal.navigator.wizards.EditCorrelationWizard;
23
import org.eclipse.tptp.platform.log.views.internal.navigator.wizards.EditCorrelationWizard;
23
import org.eclipse.ui.IWorkbenchWindow;
24
import org.eclipse.ui.IWorkbenchWindow;
Lines 35-47 Link Here
35
36
36
  public EditCorrAction(INavigator viewer)
37
  public EditCorrAction(INavigator viewer)
37
  {
38
  {
38
	super(viewer.getViewer(), CommonUITraceMessages.PROP);
39
	super(viewer.getViewer(), LogViewsMessages._500);
39
	setDescription(CommonUITraceMessages.PROP);
40
	setDescription(LogViewsMessages._501);
40
41
41
	PlatformUI.getWorkbench().getHelpSystem().setHelp(
42
	PlatformUI.getWorkbench().getHelpSystem().setHelp(
42
		this, LogViewsPlugin.getPluginId()+".refl0001");
43
		this, LogViewsPlugin.getPluginId()+".refl0001");
43
	
44
	
44
	setToolTipText(CommonUITraceMessages.PROP);	
45
	setToolTipText(LogViewsMessages._501);
45
  }
46
  }
46
  
47
  
47
  public void run()
48
  public void run()

Return to bug 143690