CloneSet1037


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
30640.950compilation_unit
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13011
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/ClassPrepareRequestImpl.java
23011
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/ClassUnloadRequestImpl.java
33011
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/MethodEntryRequestImpl.java
43011
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/MethodExitRequestImpl.java
53011
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/ThreadDeathRequestImpl.java
63011
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/ThreadStartRequestImpl.java
Clone Instance
1
Line Count
30
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/ClassPrepareRequestImpl.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.jdi.internal.request;


import org.eclipse.jdi.internal.VirtualMachineImpl;
import org.eclipse.jdi.internal.event.ClassPrepareEventImpl;

import com.sun.jdi.request.ClassPrepareRequest;

/**
 * this class implements the corresponding interfaces
 * declared by the JDI specification. See the com.sun.jdi package
 * for more information.
 *
 */
public class ClassPrepareRequestImpl extends EventRequestImpl implements ClassPrepareRequest {
        /**
         * Creates new ClassPrepareRequest.
         */
        public ClassPrepareRequestImpl(VirtualMachineImpl vmImpl) {
                super("ClassPrepareRequest", vmImpl); //$NON-NLS-1$
        }

        /**
         * @return Returns JDWP EventKind.
         */
        protected final byte eventKind() {
                return ClassPrepareEventImpl.EVENT_KIND;
        }
}




Clone Instance
2
Line Count
30
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/ClassUnloadRequestImpl.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.jdi.internal.request;


import org.eclipse.jdi.internal.VirtualMachineImpl;
import org.eclipse.jdi.internal.event.ClassUnloadEventImpl;

import com.sun.jdi.request.ClassUnloadRequest;

/**
 * this class implements the corresponding interfaces
 * declared by the JDI specification. See the com.sun.jdi package
 * for more information.
 *
 */
public class ClassUnloadRequestImpl extends EventRequestImpl implements ClassUnloadRequest {
        /**
         * Creates new ClassUnloadRequest.
         */
        public ClassUnloadRequestImpl(VirtualMachineImpl vmImpl) {
                super("ClassUnloadRequest", vmImpl); //$NON-NLS-1$
        }

        /**
         * @return Returns JDWP EventKind.
         */
        protected final byte eventKind() {
                return ClassUnloadEventImpl.EVENT_KIND;
        }
}




Clone Instance
3
Line Count
30
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/MethodEntryRequestImpl.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.jdi.internal.request;


import org.eclipse.jdi.internal.VirtualMachineImpl;
import org.eclipse.jdi.internal.event.MethodEntryEventImpl;

import com.sun.jdi.request.MethodEntryRequest;

/**
 * this class implements the corresponding interfaces
 * declared by the JDI specification. See the com.sun.jdi package
 * for more information.
 *
 */
public class MethodEntryRequestImpl extends EventRequestImpl implements MethodEntryRequest {
        /**
         * Creates new MethodEntryRequest.
         */
        public MethodEntryRequestImpl(VirtualMachineImpl vmImpl) {
                super("MethodEntryRequest", vmImpl); //$NON-NLS-1$
        }

        /**
         * @return Returns JDWP EventKind.
         */
        protected final byte eventKind() {
                return MethodEntryEventImpl.EVENT_KIND;
        }
}




Clone Instance
4
Line Count
30
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/MethodExitRequestImpl.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.jdi.internal.request;


import org.eclipse.jdi.internal.VirtualMachineImpl;
import org.eclipse.jdi.internal.event.MethodExitEventImpl;

import com.sun.jdi.request.MethodExitRequest;

/**
 * this class implements the corresponding interfaces
 * declared by the JDI specification. See the com.sun.jdi package
 * for more information.
 *
 */
public class MethodExitRequestImpl extends EventRequestImpl implements MethodExitRequest {
        /**
         * Creates new MethodExitRequest.
         */
        public MethodExitRequestImpl(VirtualMachineImpl vmImpl) {
                super("MethodExitRequest", vmImpl); //$NON-NLS-1$
        }

        /**
         * @return Returns JDWP EventKind.
         */
        protected final byte eventKind() {
                return MethodExitEventImpl.EVENT_KIND;
        }
}




Clone Instance
5
Line Count
30
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/ThreadDeathRequestImpl.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.jdi.internal.request;


import org.eclipse.jdi.internal.VirtualMachineImpl;
import org.eclipse.jdi.internal.event.ThreadDeathEventImpl;

import com.sun.jdi.request.ThreadDeathRequest;

/**
 * this class implements the corresponding interfaces
 * declared by the JDI specification. See the com.sun.jdi package
 * for more information.
 *
 */
public class ThreadDeathRequestImpl extends EventRequestImpl implements ThreadDeathRequest {
        /**
         * Creates new ThreadDeathRequest.
         */
        public ThreadDeathRequestImpl(VirtualMachineImpl vmImpl) {
                super("ThreadDeathRequest", vmImpl); //$NON-NLS-1$
        }

        /**
         * @return Returns JDWP EventKind.
         */
        protected final byte eventKind() {
                return ThreadDeathEventImpl.EVENT_KIND;
        }
}




Clone Instance
6
Line Count
30
Source Line
11
Source File
plugins/org.eclipse.jdt.debug/jdi/org/eclipse/jdi/internal/request/ThreadStartRequestImpl.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.jdi.internal.request;


import org.eclipse.jdi.internal.VirtualMachineImpl;
import org.eclipse.jdi.internal.event.ThreadStartEventImpl;

import com.sun.jdi.request.ThreadStartRequest;

/**
 * this class implements the corresponding interfaces
 * declared by the JDI specification. See the com.sun.jdi package
 * for more information.
 *
 */
public class ThreadStartRequestImpl extends EventRequestImpl implements ThreadStartRequest {
        /**
         * Creates new ThreadStartRequest.
         */
        public ThreadStartRequestImpl(VirtualMachineImpl vmImpl) {
                super("ThreadStartRequest", vmImpl); //$NON-NLS-1$
        }

        /**
         * @return Returns JDWP EventKind.
         */
        protected final byte eventKind() {
                return ThreadStartEventImpl.EVENT_KIND;
        }
}




Clone AbstractionParameter Count: 4Parameter 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.jdi.internal.request;

import org.eclipse.jdi.internal.VirtualMachineImpl;
import org.eclipse.jdi.internal.event. [[#variableba47c9a0]];
import com.sun.jdi.request. [[#variableba47c920]];

/**
 * this class implements the corresponding interfaces
 * declared by the JDI specification. See the com.sun.jdi package
 * for more information.
 *
 */
public class [[#variableba47c8c0]]extends EventRequestImpl implements [[#variableba47c920]]{
  /**
           * Creates new ThreadStartRequest.
           */
  /**
           * Creates new ThreadDeathRequest.
           */
  /**
           * Creates new MethodExitRequest.
           */
  /**
           * Creates new MethodEntryRequest.
           */
  /**
           * Creates new ClassUnloadRequest.
           */
  /**
           * Creates new ClassPrepareRequest.
           */
  public [[#variableba47c8c0]](VirtualMachineImpl vmImpl) {
    super( [[#variableba47c840]], vmImpl); //$NON-NLS-1$
  }

  /**
           * @return Returns JDWP EventKind.
           */
  protected final byte eventKind() {
    return [[#variableba47c9a0]].EVENT_KIND;
  }
}


 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#ba47c9a0]]
ThreadStartEventImpl 
12[[#ba47c9a0]]
ThreadDeathEventImpl 
13[[#ba47c9a0]]
MethodExitEventImpl 
14[[#ba47c9a0]]
MethodEntryEventImpl 
15[[#ba47c9a0]]
ClassUnloadEventImpl 
16[[#ba47c9a0]]
ClassPrepareEventImpl 
21[[#ba47c920]]
ThreadStartRequest 
22[[#ba47c920]]
ThreadDeathRequest 
23[[#ba47c920]]
MethodExitRequest 
24[[#ba47c920]]
MethodEntryRequest 
25[[#ba47c920]]
ClassUnloadRequest 
26[[#ba47c920]]
ClassPrepareRequest 
31[[#ba47c8c0]]
ThreadStartRequestImpl 
32[[#ba47c8c0]]
ThreadDeathRequestImpl 
33[[#ba47c8c0]]
MethodExitRequestImpl 
34[[#ba47c8c0]]
MethodEntryRequestImpl 
35[[#ba47c8c0]]
ClassUnloadRequestImpl 
36[[#ba47c8c0]]
ClassPrepareRequestImpl 
41[[#ba47c840]]
"ThreadStartRequest" 
42[[#ba47c840]]
"ThreadDeathRequest" 
43[[#ba47c840]]
"MethodExitRequest" 
44[[#ba47c840]]
"MethodEntryRequest" 
45[[#ba47c840]]
"ClassUnloadRequest" 
46[[#ba47c840]]
"ClassPrepareRequest"