CloneSet740


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
161220.955compilation_unit
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11611
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/AbsentInformationException.java
21611
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/ClassNotPreparedException.java
31611
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/IncompatibleThreadStateException.java
41611
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/InconsistentDebugInfoException.java
52411
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/InvalidCodeIndexException.java
62411
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/InvalidLineNumberException.java
71611
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/InvalidStackFrameException.java
81611
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/InvalidTypeException.java
91611
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/NativeMethodException.java
101611
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/ObjectCollectedException.java
111611
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/VMCannotBeModifiedException.java
121611
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/VMMismatchException.java
Clone Instance
1
Line Count
16
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/AbsentInformationException.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);
        }
}




Clone Instance
2
Line Count
16
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/ClassNotPreparedException.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 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);
        }
}




Clone Instance
3
Line Count
16
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/IncompatibleThreadStateException.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 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);
        }
}




Clone Instance
4
Line Count
16
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/InconsistentDebugInfoException.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 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);
        }
}




Clone Instance
5
Line Count
24
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/InvalidCodeIndexException.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;

/**
 * @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);
        }
}




Clone Instance
6
Line Count
24
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/InvalidLineNumberException.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;

/**
 * @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);
        }
}




Clone Instance
7
Line Count
16
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/InvalidStackFrameException.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 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);
        }
}




Clone Instance
8
Line Count
16
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/InvalidTypeException.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 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);
        }
}




Clone Instance
9
Line Count
16
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/NativeMethodException.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 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);
        }
}




Clone Instance
10
Line Count
16
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/ObjectCollectedException.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 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);
        }
}




Clone Instance
11
Line Count
16
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi interfaces/com/sun/jdi/VMCannotBeModifiedException.java

/*******************************************************************************
 * 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);
        }
}




Clone Instance
12
Line Count
16
Source Line
11
Source File
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 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);
        }
}




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
 *******************************************************************************/
/*******************************************************************************
 * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#b49e12e0]]
VMMismatchException 
12[[#b49e12e0]]
VMCannotBeModifiedException 
13[[#b49e12e0]]
ObjectCollectedException 
14[[#b49e12e0]]
NativeMethodException 
15[[#b49e12e0]]
InvalidTypeException 
16[[#b49e12e0]]
InvalidStackFrameException 
17[[#b49e12e0]]
InvalidLineNumberException 
18[[#b49e12e0]]
InvalidCodeIndexException 
19[[#b49e12e0]]
InconsistentDebugInfoException 
110[[#b49e12e0]]
IncompatibleThreadStateException 
111[[#b49e12e0]]
ClassNotPreparedException 
112[[#b49e12e0]]
AbsentInformationException 
21[[#b49e1340]]
RuntimeException 
22[[#b49e1340]]
UnsupportedOperationException 
23[[#b49e1340]]
RuntimeException 
24[[#b49e1340]]
RuntimeException 
25[[#b49e1340]]
Exception 
26[[#b49e1340]]
RuntimeException 
27[[#b49e1340]]
RuntimeException 
28[[#b49e1340]]
RuntimeException 
29[[#b49e1340]]
RuntimeException 
210[[#b49e1340]]
Exception 
211[[#b49e1340]]
RuntimeException 
212[[#b49e1340]]
Exception