Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
16 | 12 | 2 | 0.955 | compilation_unit |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 16 | 11 | plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/AbsentInformationException.java |
2 | 16 | 11 | plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/ClassNotPreparedException.java |
3 | 16 | 11 | plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/IncompatibleThreadStateException.java |
4 | 16 | 11 | plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/InconsistentDebugInfoException.java |
5 | 24 | 11 | plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/InvalidCodeIndexException.java |
6 | 24 | 11 | plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/InvalidLineNumberException.java |
7 | 16 | 11 | plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/InvalidStackFrameException.java |
8 | 16 | 11 | plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/InvalidTypeException.java |
9 | 16 | 11 | plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/NativeMethodException.java |
10 | 16 | 11 | plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/ObjectCollectedException.java |
11 | 16 | 11 | plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/VMCannotBeModifiedException.java |
12 | 16 | 11 | plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/VMMismatchException.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 com.sun.jdi; public class AbsentInformationException extends Exception { /** * All serializable objects should have a stable serialVersionUID */ private static final long serialVersionUID = 1L; public AbsentInformationException() { } public AbsentInformationException(String arg1) { super(arg1); } } |
| ||||
/******************************************************************************* * 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 com.sun.jdi; public class ClassNotPreparedException extends RuntimeException { /** * All serializable objects should have a stable serialVersionUID */ private static final long serialVersionUID = 1L; public ClassNotPreparedException() { } public ClassNotPreparedException(String arg1) { super(arg1); } } |
| ||||
/******************************************************************************* * 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 com.sun.jdi; public class IncompatibleThreadStateException extends Exception { /** * All serializable objects should have a stable serialVersionUID */ private static final long serialVersionUID = 1L; public IncompatibleThreadStateException() { } public IncompatibleThreadStateException(String arg1) { super(arg1); } } |
| ||||
/******************************************************************************* * 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 com.sun.jdi; public class InconsistentDebugInfoException extends RuntimeException { /** * All serializable objects should have a stable serialVersionUID */ private static final long serialVersionUID = 1L; public InconsistentDebugInfoException() { } public InconsistentDebugInfoException(String arg1) { super(arg1); } } |
| ||||
/******************************************************************************* * 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 com.sun.jdi; /** * @deprecated This exception is no longer thrown. */ public class InvalidCodeIndexException extends RuntimeException { /** * All serializable objects should have a stable serialVersionUID */ private static final long serialVersionUID = 1L; /** * @deprecated */ public InvalidCodeIndexException() { } /** * @deprecated */ public InvalidCodeIndexException(String arg1) { super(arg1); } } |
| ||||
/******************************************************************************* * 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 com.sun.jdi; /** * @deprecated This exception is no longer thrown. */ public class InvalidLineNumberException extends RuntimeException { /** * All serializable objects should have a stable serialVersionUID */ private static final long serialVersionUID = 1L; /** * @deprecated */ public InvalidLineNumberException() { } /** * @deprecated */ public InvalidLineNumberException(String arg1) { super(arg1); } } |
| ||||
/******************************************************************************* * 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 com.sun.jdi; public class InvalidStackFrameException extends RuntimeException { /** * All serializable objects should have a stable serialVersionUID */ private static final long serialVersionUID = 1L; public InvalidStackFrameException() { } public InvalidStackFrameException(String arg1) { super(arg1); } } |
| ||||
/******************************************************************************* * 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 com.sun.jdi; public class InvalidTypeException extends Exception { /** * All serializable objects should have a stable serialVersionUID */ private static final long serialVersionUID = 1L; public InvalidTypeException() { } public InvalidTypeException(String arg1) { super(arg1); } } |
| ||||
/******************************************************************************* * 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 com.sun.jdi; public class NativeMethodException extends RuntimeException { /** * All serializable objects should have a stable serialVersionUID */ private static final long serialVersionUID = 1L; public NativeMethodException() { } public NativeMethodException(String arg1) { super(arg1); } } |
| ||||
/******************************************************************************* * 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 com.sun.jdi; public class ObjectCollectedException extends RuntimeException { /** * All serializable objects should have a stable serialVersionUID */ private static final long serialVersionUID = 1L; public ObjectCollectedException() { } public ObjectCollectedException(String arg1) { super(arg1); } } |
| ||||
/******************************************************************************* * Copyright (c) 2004, 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 com.sun.jdi; public class VMCannotBeModifiedException extends UnsupportedOperationException { /** * All serializable objects should have a stable serialVersionUID */ private static final long serialVersionUID = 1L; public VMCannotBeModifiedException() { } public VMCannotBeModifiedException(String arg1) { super(arg1); } } |
| ||||
/******************************************************************************* * 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 com.sun.jdi; public class VMMismatchException extends RuntimeException { /** * All serializable objects should have a stable serialVersionUID */ private static final long serialVersionUID = 1L; public VMMismatchException() { } public VMMismatchException(String arg1) { super(arg1); } } |
| |||
/******************************************************************************* * 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 *******************************************************************************/ /******************************************************************************* * Copyright (c) 2004, 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 com.sun.jdi; /** * @deprecated This exception is no longer thrown. */ public class [[#variableb49e12e0]]extends [[#variableb49e1340]]{ /** * All serializable objects should have a stable serialVersionUID */ private static final long serialVersionUID = 1L; /** * @deprecated */ public [[#variableb49e12e0]]() { } /** * @deprecated */ public [[#variableb49e12e0]](String arg1) { super(arg1); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#b49e12e0]] | VMMismatchException |
1 | 2 | [[#b49e12e0]] | VMCannotBeModifiedException |
1 | 3 | [[#b49e12e0]] | ObjectCollectedException |
1 | 4 | [[#b49e12e0]] | NativeMethodException |
1 | 5 | [[#b49e12e0]] | InvalidTypeException |
1 | 6 | [[#b49e12e0]] | InvalidStackFrameException |
1 | 7 | [[#b49e12e0]] | InvalidLineNumberException |
1 | 8 | [[#b49e12e0]] | InvalidCodeIndexException |
1 | 9 | [[#b49e12e0]] | InconsistentDebugInfoException |
1 | 10 | [[#b49e12e0]] | IncompatibleThreadStateException |
1 | 11 | [[#b49e12e0]] | ClassNotPreparedException |
1 | 12 | [[#b49e12e0]] | AbsentInformationException |
2 | 1 | [[#b49e1340]] | RuntimeException |
2 | 2 | [[#b49e1340]] | UnsupportedOperationException |
2 | 3 | [[#b49e1340]] | RuntimeException |
2 | 4 | [[#b49e1340]] | RuntimeException |
2 | 5 | [[#b49e1340]] | Exception |
2 | 6 | [[#b49e1340]] | RuntimeException |
2 | 7 | [[#b49e1340]] | RuntimeException |
2 | 8 | [[#b49e1340]] | RuntimeException |
2 | 9 | [[#b49e1340]] | RuntimeException |
2 | 10 | [[#b49e1340]] | Exception |
2 | 11 | [[#b49e1340]] | RuntimeException |
2 | 12 | [[#b49e1340]] | Exception |