CloneSet3125


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
27230.985compilation_unit
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12711
plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/classpath/VariableClasspathEntryAdapterFactory.java
22711
plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/sourcelookup/WorkbenchAdapterFactory.java
Clone Instance
1
Line Count
27
Source Line
11
Source File
plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/classpath/VariableClasspathEntryAdapterFactory.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.debug.ui.classpath;

import org.eclipse.core.runtime.IAdapterFactory;
import org.eclipse.ui.model.IWorkbenchAdapter;

/**
 * Adapter factory for source lookup elemnets.
 * @since 3.0
 */
public class VariableClasspathEntryAdapterFactory implements IAdapterFactory {
        /* (non-Javadoc)
         * @see org.eclipse.core.runtime.IAdapterFactory#getAdapter(java.lang.Object, java.lang.Class)
         */
        public Object getAdapter(Object adaptableObject, Class adapterType) {
                if (adapterType.equals(IWorkbenchAdapter.class )) {
                        return new VariableClasspathEntryWorkbenchAdapter();
                }
                return null;
        }

        /* (non-Javadoc)
         * @see org.eclipse.core.runtime.IAdapterFactory#getAdapterList()
         */
        public Class[] getAdapterList() {
                return new Class[] {
                                    IWorkbenchAdapter.class
                                   };
        }
}




Clone Instance
2
Line Count
27
Source Line
11
Source File
plugins/org.eclipse.jdt.debug.ui/ui/org/eclipse/jdt/internal/debug/ui/sourcelookup/WorkbenchAdapterFactory.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.debug.ui.sourcelookup;

import org.eclipse.core.runtime.IAdapterFactory;
import org.eclipse.ui.model.IWorkbenchAdapter;

/**
 * Adapter factory for source lookup elemnets.
 * @since 3.0
 */
public class WorkbenchAdapterFactory implements IAdapterFactory {
        /* (non-Javadoc)
         * @see org.eclipse.core.runtime.IAdapterFactory#getAdapter(java.lang.Object, java.lang.Class)
         */
        public Object getAdapter(Object adaptableObject, Class adapterType) {
                if (adapterType.equals(IWorkbenchAdapter.class )) {
                        return new WorkbenchAdapter();
                }
                return null;
        }

        /* (non-Javadoc)
         * @see org.eclipse.core.runtime.IAdapterFactory#getAdapterList()
         */
        public Class[] getAdapterList() {
                return new Class[] {
                                    IWorkbenchAdapter.class
                                   };
        }
}




Clone AbstractionParameter Count: 3Parameter 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.debug.ui. [[#variable981e5a00]];

import org.eclipse.core.runtime.IAdapterFactory;
import org.eclipse.ui.model.IWorkbenchAdapter;

/**
 * Adapter factory for source lookup elemnets.
 * @since 3.0
 */
public class [[#variable981e52c0]]implements IAdapterFactory {
  /* (non-Javadoc)
           * @see org.eclipse.core.runtime.IAdapterFactory#getAdapter(java.lang.Object, java.lang.Class)
           */
  public Object getAdapter(Object adaptableObject, Class adapterType) {
    if (adapterType.equals(IWorkbenchAdapter.class )) {
      return new [[#variable981e5b00]]();
    }
    return null;
  }

  /* (non-Javadoc)
           * @see org.eclipse.core.runtime.IAdapterFactory#getAdapterList()
           */
  public Class[] getAdapterList() {
    return new Class[] {
                         IWorkbenchAdapter.class
                       };
  }
}


 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#981e5a00]]
classpath 
12[[#981e5a00]]
sourcelookup 
21[[#981e52c0]]
VariableClasspathEntryAdapterFactory 
22[[#981e52c0]]
WorkbenchAdapterFactory 
31[[#981e5b00]]
VariableClasspathEntryWorkbenchAdapter 
32[[#981e5b00]]
WorkbenchAdapter