Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
15 | 4 | 2 | 0.959 | compilation_unit |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 15 | 12 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/filters/FieldsFilter.java |
2 | 15 | 11 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/filters/LocalTypesFilter.java |
3 | 15 | 12 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/filters/NonPublicFilter.java |
4 | 15 | 12 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/filters/StaticsFilter.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.filters; import org.eclipse.jdt.internal.ui.viewsupport.MemberFilter; /** * Fields filter. * * @since 3.0 */ public class FieldsFilter extends MemberFilter { public FieldsFilter() { addFilter(MemberFilter.FILTER_FIELDS); } } |
| ||||
/******************************************************************************* * 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.filters; import org.eclipse.jdt.internal.ui.viewsupport.MemberFilter; /** * Filters local types */ public class LocalTypesFilter extends MemberFilter { public LocalTypesFilter() { addFilter(MemberFilter.FILTER_LOCALTYPES); } } |
| ||||
/******************************************************************************* * 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.filters; import org.eclipse.jdt.internal.ui.viewsupport.MemberFilter; /** * Non-public member filter. * * @since 3.0 */ public class NonPublicFilter extends MemberFilter { public NonPublicFilter() { addFilter(MemberFilter.FILTER_NONPUBLIC); } } |
| ||||
/******************************************************************************* * 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.filters; import org.eclipse.jdt.internal.ui.viewsupport.MemberFilter; /** * Statics filter. * * @since 3.0 */ public class StaticsFilter extends MemberFilter { public StaticsFilter() { addFilter(MemberFilter.FILTER_STATIC); } } |
| |||
/******************************************************************************* * 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.filters; import org.eclipse.jdt.internal.ui.viewsupport.MemberFilter; /** * Fields filter. * * @since 3.0 */ /** * Filters local types */ /** * Non-public member filter. * * @since 3.0 */ /** * Statics filter. * * @since 3.0 */ public class [[#variable77d3b380]]extends MemberFilter { public [[#variable77d3b380]]() { addFilter(MemberFilter. [[#variable77d3b320]]); } } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#77d3b380]] | FieldsFilter |
1 | 2 | [[#77d3b380]] | LocalTypesFilter |
1 | 3 | [[#77d3b380]] | NonPublicFilter |
1 | 4 | [[#77d3b380]] | StaticsFilter |
2 | 1 | [[#77d3b320]] | FILTER_FIELDS |
2 | 2 | [[#77d3b320]] | FILTER_LOCALTYPES |
2 | 3 | [[#77d3b320]] | FILTER_NONPUBLIC |
2 | 4 | [[#77d3b320]] | FILTER_STATIC |