mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Adding friend access
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
parent
51e701d5f4
commit
1a11a46fda
4 changed files with 17 additions and 20 deletions
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2011 Texas Instruments, Inc. and others.
|
||||
* Copyright (c) 2011, 2015 Texas Instruments, Inc. and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
|
@ -32,7 +32,6 @@ import org.eclipse.debug.core.commands.IEnabledStateRequest;
|
|||
/**
|
||||
* @since 2.2
|
||||
*/
|
||||
@SuppressWarnings("restriction")
|
||||
public abstract class DsfDebugViewLayoutCommand implements IDebugCommandHandler{
|
||||
|
||||
protected final DsfExecutor fExecutor;
|
||||
|
@ -143,6 +142,6 @@ public abstract class DsfDebugViewLayoutCommand implements IDebugCommandHandler{
|
|||
return true;
|
||||
}
|
||||
|
||||
abstract void executeOnDsfThread( IExecutionContextTranslator translator, IExecutionDMContext[] contexts, RequestMonitor requestMonitor);
|
||||
abstract void executeOnDsfThread(IExecutionContextTranslator translator, IExecutionDMContext[] contexts, RequestMonitor rm);
|
||||
abstract void canExecuteOnDsfThread(IExecutionContextTranslator translator, IExecutionDMContext[] contexts, DataRequestMonitor<Boolean> rm);
|
||||
}
|
||||
|
|
|
@ -20,7 +20,6 @@ import org.eclipse.debug.core.commands.IDebugCommandHandler;
|
|||
/**
|
||||
* @since 2.2
|
||||
*/
|
||||
@SuppressWarnings("restriction")
|
||||
public class DsfGroupDebugContextsCommand extends DsfDebugViewLayoutCommand implements IDebugCommandHandler {
|
||||
|
||||
public DsfGroupDebugContextsCommand(DsfSession session) {
|
||||
|
|
|
@ -20,7 +20,6 @@ import org.eclipse.debug.core.commands.IDebugCommandHandler;
|
|||
/**
|
||||
* @since 2.2
|
||||
*/
|
||||
@SuppressWarnings("restriction")
|
||||
public class DsfUngroupDebugContextsCommand extends DsfDebugViewLayoutCommand implements IDebugCommandHandler {
|
||||
|
||||
public DsfUngroupDebugContextsCommand(DsfSession session) {
|
||||
|
|
|
@ -15,7 +15,7 @@ Bundle-ActivationPolicy: lazy
|
|||
Export-Package: org.eclipse.cdt.dsf.concurrent,
|
||||
org.eclipse.cdt.dsf.datamodel,
|
||||
org.eclipse.cdt.dsf.debug.internal.provisional.model;x-friends:="org.eclipse.cdt.dsf.ui,org.eclipse.cdt.dsf.gdb",
|
||||
org.eclipse.cdt.dsf.debug.internal.provisional.service;x-internal:=true,
|
||||
org.eclipse.cdt.dsf.debug.internal.provisional.service;x-friends:="org.eclipse.cdt.dsf.ui",
|
||||
org.eclipse.cdt.dsf.debug.model,
|
||||
org.eclipse.cdt.dsf.debug.service,
|
||||
org.eclipse.cdt.dsf.debug.service.command,
|
||||
|
|
Loading…
Add table
Reference in a new issue