Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
17 | 2 | 2 | 0.972 | compilation_unit |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 17 | 11 | plugins/org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/ValidateEditException.java |
2 | 20 | 11 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaUIException.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.corext; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IStatus; /** * Exception thrown if a valid edit failed. */ public class ValidateEditException extends CoreException { private static final long serialVersionUID = 1L; public ValidateEditException(IStatus status) { super(status); } } |
| ||||
/******************************************************************************* * 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.ui; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IStatus; /** * An exception to wrap a status. This is necessary to use the core's IRunnableWithProgress * support */ public class JavaUIException extends CoreException { private static final long serialVersionUID = 1L; public JavaUIException(IStatus status) { super(status); } } |
| |||
/******************************************************************************* * 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. [[#variable539d1ea0]]; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IStatus; /** * Exception thrown if a valid edit failed. */ /** * An exception to wrap a status. This is necessary to use the core's IRunnableWithProgress * support */ public class [[#variable539d1e80]]extends CoreException { private static final long serialVersionUID = 1L; public [[#variable539d1e80]](IStatus status) { super(status); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#539d1ea0]] | corext |
1 | 2 | [[#539d1ea0]] | ui |
2 | 1 | [[#539d1e80]] | ValidateEditException |
2 | 2 | [[#539d1e80]] | JavaUIException |