Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
20 | 2 | 2 | 0.977 | compilation_unit |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 20 | 11 | plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/actions/OpenStackFrameAction.java |
2 | 20 | 11 | plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/actions/OpenVariableTypeAction.java |
| ||||
/******************************************************************************* * Copyright (c) 2000, 2005 IBM Corporation 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 * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jdt.internal.debug.ui.actions; import org.eclipse.core.runtime.IAdaptable; import org.eclipse.debug.core.model.IDebugElement; import org.eclipse.jdt.debug.core.IJavaStackFrame; /** * Action that opens a type associated with a selected stack frame. */ public abstract class OpenStackFrameAction extends OpenTypeAction { /* (non-Javadoc) * @see org.eclipse.jdt.internal.debug.ui.actions.OpenTypeAction#getDebugElement(org.eclipse.core.runtime.IAdaptable) */ protected IDebugElement getDebugElement(IAdaptable element) { return (IDebugElement) element.getAdapter(IJavaStackFrame.class ); } } |
| ||||
/******************************************************************************* * Copyright (c) 2000, 2005 IBM Corporation 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 * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jdt.internal.debug.ui.actions; import org.eclipse.core.runtime.IAdaptable; import org.eclipse.debug.core.model.IDebugElement; import org.eclipse.jdt.debug.core.IJavaVariable; /** * Action to open a type associated with a selected variable. */ public abstract class OpenVariableTypeAction extends OpenTypeAction { /* (non-Javadoc) * @see org.eclipse.jdt.internal.debug.ui.actions.OpenTypeAction#getDebugElement(org.eclipse.core.runtime.IAdaptable) */ protected IDebugElement getDebugElement(IAdaptable element) { return (IDebugElement) element.getAdapter(IJavaVariable.class ); } } |
| |||
/******************************************************************************* * Copyright (c) 2000, 2005 IBM Corporation 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 * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.jdt.internal.debug.ui.actions; import org.eclipse.core.runtime.IAdaptable; import org.eclipse.debug.core.model.IDebugElement; import org.eclipse.jdt.debug.core. [[#variablea08d4420]]; /** * Action that opens a type associated with a selected stack frame. */ /** * Action to open a type associated with a selected variable. */ public abstract class [[#variablea08d4d60]]extends OpenTypeAction { /* (non-Javadoc) * @see org.eclipse.jdt.internal.debug.ui.actions.OpenTypeAction#getDebugElement(org.eclipse.core.runtime.IAdaptable) */ protected IDebugElement getDebugElement(IAdaptable element) { return (IDebugElement) element.getAdapter( [[#variablea08d4420]].class ); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#a08d4420]] | IJavaStackFrame |
1 | 2 | [[#a08d4420]] | IJavaVariable |
2 | 1 | [[#a08d4d60]] | OpenStackFrameAction |
2 | 2 | [[#a08d4d60]] | OpenVariableTypeAction |