1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-12 02:35:37 +02:00

Reformat the file, tabs and spaces were mixed

Change-Id: If136dc3222c23f2ed41539d25b509161a0313475
Signed-off-by: Yannick Mayeur <yannick.mayeur@gmail.com>
This commit is contained in:
Yannick Mayeur 2017-05-05 13:39:55 +01:00 committed by Gerrit Code Review @ Eclipse.org
parent d4ecd37bb1
commit 5defeb26ac

View file

@ -33,8 +33,8 @@ import org.eclipse.jface.preference.IPreferenceStore;
import com.ibm.icu.text.MessageFormat;
/**
* This factory provides an instance of ICSourceNotFoundDescription that
* can generate a description of a IFrameDMContext.
* This factory provides an instance of ICSourceNotFoundDescription that can
* generate a description of a IFrameDMContext.
*
*/
public class CSourceNotFoundDescriptionFactory implements IAdapterFactory {
@ -42,9 +42,7 @@ public class CSourceNotFoundDescriptionFactory implements IAdapterFactory {
@Override
@SuppressWarnings("unchecked")
public <T> T getAdapter(Object adaptableObject, Class<T> adapterType) {
if (adapterType.equals(ICSourceNotFoundDescription.class) &&
adaptableObject instanceof IFrameDMContext)
{
if (adapterType.equals(ICSourceNotFoundDescription.class) && adaptableObject instanceof IFrameDMContext) {
final IFrameDMContext frameDMC = (IFrameDMContext) adaptableObject;
return (T) new ICSourceNotFoundDescription() {
@ -53,8 +51,8 @@ public class CSourceNotFoundDescriptionFactory implements IAdapterFactory {
Query<IStack.IFrameDMData> query = new Query<IStack.IFrameDMData>() {
@Override
protected void execute(DataRequestMonitor<IStack.IFrameDMData> rm) {
DsfServicesTracker tracker =
new DsfServicesTracker(DsfUIPlugin.getBundleContext(), frameDMC.getSessionId());
DsfServicesTracker tracker = new DsfServicesTracker(DsfUIPlugin.getBundleContext(),
frameDMC.getSessionId());
IStack stack = tracker.getService(IStack.class);
if (stack != null) {
@ -67,8 +65,7 @@ public class CSourceNotFoundDescriptionFactory implements IAdapterFactory {
}
};
DsfSession session = DsfSession.getSession(frameDMC.getSessionId());
if (session != null && session.getExecutor() != null)
{
if (session != null && session.getExecutor() != null) {
session.getExecutor().execute(query);
try {
IFrameDMData dmData = query.get();
@ -78,7 +75,8 @@ public class CSourceNotFoundDescriptionFactory implements IAdapterFactory {
}
}
return frameDMC.toString();
}};
}
};
}
return null;
}
@ -88,13 +86,14 @@ public class CSourceNotFoundDescriptionFactory implements IAdapterFactory {
return new Class[] { ICSourceNotFoundDescription.class };
}
/** Creates a brief description of stack frame data.
* Based on code in StackFrameVMNode.
/**
* Creates a brief description of stack frame data. Based on code in
* StackFrameVMNode.
*
* @param frame
* @return the frame description
*/
private static String getFrameDescription(IStack.IFrameDMData frame)
{
private static String getFrameDescription(IStack.IFrameDMData frame) {
String formatString = ""; //$NON-NLS-1$
String[] propertyNames = null;
HashMap<String, Object> properties = new HashMap<String, Object>();
@ -104,53 +103,36 @@ public class CSourceNotFoundDescriptionFactory implements IAdapterFactory {
String file = (String) properties.get(ILaunchVMConstants.PROP_FRAME_FILE);
String function = (String) properties.get(ILaunchVMConstants.PROP_FRAME_FUNCTION);
String module = (String) properties.get(ILaunchVMConstants.PROP_FRAME_MODULE);
if (line != null && line >= 0 && file != null && !file.isEmpty())
{
if (line != null && line >= 0 && file != null && !file.isEmpty()) {
if (function != null && function.contains(")")) //$NON-NLS-1$
formatString = MessagesForLaunchVM.StackFramesVMNode_No_columns__text_format;
else
formatString = MessagesForLaunchVM.StackFramesVMNode_No_columns__add_parens__text_format;
propertyNames = new String[] {
ILaunchVMConstants.PROP_FRAME_ADDRESS,
ILaunchVMConstants.PROP_FRAME_FUNCTION,
ILaunchVMConstants.PROP_FRAME_FILE,
ILaunchVMConstants.PROP_FRAME_LINE,
ILaunchVMConstants.PROP_FRAME_COLUMN,
propertyNames = new String[] { ILaunchVMConstants.PROP_FRAME_ADDRESS,
ILaunchVMConstants.PROP_FRAME_FUNCTION, ILaunchVMConstants.PROP_FRAME_FILE,
ILaunchVMConstants.PROP_FRAME_LINE, ILaunchVMConstants.PROP_FRAME_COLUMN,
ILaunchVMConstants.PROP_FRAME_MODULE };
}
else if (function != null && !function.isEmpty() && module != null && !module.isEmpty())
{
} else if (function != null && !function.isEmpty() && module != null && !module.isEmpty()) {
if (function.contains(")")) //$NON-NLS-1$
formatString = MessagesForLaunchVM.StackFramesVMNode_No_columns__No_line__text_format;
else
formatString = MessagesForLaunchVM.StackFramesVMNode_No_columns__add_parens__text_format;
propertyNames = new String[] {
ILaunchVMConstants.PROP_FRAME_ADDRESS,
ILaunchVMConstants.PROP_FRAME_FUNCTION,
ILaunchVMConstants.PROP_FRAME_MODULE};
}
else if (module != null && !module.isEmpty())
{
propertyNames = new String[] { ILaunchVMConstants.PROP_FRAME_ADDRESS,
ILaunchVMConstants.PROP_FRAME_FUNCTION, ILaunchVMConstants.PROP_FRAME_MODULE };
} else if (module != null && !module.isEmpty()) {
formatString = MessagesForLaunchVM.StackFramesVMNode_No_columns__No_function__text_format;
propertyNames = new String[] {
ILaunchVMConstants.PROP_FRAME_ADDRESS,
propertyNames = new String[] { ILaunchVMConstants.PROP_FRAME_ADDRESS,
ILaunchVMConstants.PROP_FRAME_MODULE };
}
else if (function != null && !function.isEmpty())
{
} else if (function != null && !function.isEmpty()) {
if (function.contains(")")) //$NON-NLS-1$
formatString = MessagesForLaunchVM.StackFramesVMNode_No_columns__No_module__text_format;
else
formatString = MessagesForLaunchVM.StackFramesVMNode_No_columns__No_module__add_parens__text_format;
propertyNames = new String[] {
ILaunchVMConstants.PROP_FRAME_ADDRESS,
propertyNames = new String[] { ILaunchVMConstants.PROP_FRAME_ADDRESS,
ILaunchVMConstants.PROP_FRAME_FUNCTION };
}
else
{
} else {
formatString = MessagesForLaunchVM.StackFramesVMNode_No_columns__Address_only__text_format;
propertyNames = new String[] {
ILaunchVMConstants.PROP_FRAME_ADDRESS};
propertyNames = new String[] { ILaunchVMConstants.PROP_FRAME_ADDRESS };
}
Object[] propertyValues = new Object[propertyNames.length];