CloneSet6863


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
17220.972compilation_unit
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11711
plugins/org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/ValidateEditException.java
22011
plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/JavaUIException.java
Clone Instance
1
Line Count
17
Source Line
11
Source File
plugins/org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/ValidateEditException.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);
        }
}




Clone Instance
2
Line Count
20
Source Line
11
Source File
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.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);
        }
}




Clone AbstractionParameter Count: 2Parameter Bindings

/*******************************************************************************
 * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#539d1ea0]]
corext 
12[[#539d1ea0]]
ui 
21[[#539d1e80]]
ValidateEditException 
22[[#539d1e80]]
JavaUIException