Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
9 | 4 | 2 | 0.976 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 9 | 64 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OpenNewAnnotationWizardAction.java |
2 | 9 | 61 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OpenNewClassWizardAction.java |
3 | 9 | 62 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OpenNewEnumWizardAction.java |
4 | 9 | 62 | plugins/org.eclipse.jdt.ui/ui/org/eclipse/jdt/ui/actions/OpenNewInterfaceWizardAction.java |
| ||||
/** * Sets a page to be used by the wizard or <code>null</code> to use a page initialized with values * from the current selection (see {@link #getSelection()} and {@link #setSelection(IStructuredSelection)}). * @param page the page to use or <code>null</code> */ public void setConfiguredWizardPage(NewAnnotationWizardPage page) { fPage = page; } /* (non-Javadoc) * @see org.eclipse.jdt.ui.actions.AbstractOpenWizardAction#createWizard() */ protected final INewWizard createWizard() throws CoreException { return new NewAnnotationCreationWizard(fPage); } |
| ||||
/** * Sets a page to be used by the wizard or <code>null</code> to use a page initialized with values * from the current selection (see {@link #getSelection()} and {@link #setSelection(IStructuredSelection)}). * @param page the page to use or <code>null</code> */ public void setConfiguredWizardPage(NewClassWizardPage page) { fPage = page; } /* (non-Javadoc) * @see org.eclipse.jdt.ui.actions.AbstractOpenWizardAction#createWizard() */ protected final INewWizard createWizard() throws CoreException { return new NewClassCreationWizard(fPage); } |
| ||||
/** * Sets a page to be used by the wizard or <code>null</code> to use a page initialized with values * from the current selection (see {@link #getSelection()} and {@link #setSelection(IStructuredSelection)}). * @param page the page to use or <code>null</code> */ public void setConfiguredWizardPage(NewEnumWizardPage page) { fPage = page; } /* (non-Javadoc) * @see org.eclipse.jdt.ui.actions.AbstractOpenWizardAction#createWizard() */ protected final INewWizard createWizard() throws CoreException { return new NewEnumCreationWizard(fPage); } |
| ||||
/** * Sets a page to be used by the wizard or <code>null</code> to use a page initialized with values * from the current selection (see {@link #getSelection()} and {@link #setSelection(IStructuredSelection)}). * @param page the page to use or <code>null</code> */ public void setConfiguredWizardPage(NewInterfaceWizardPage page) { fPage = page; } /* (non-Javadoc) * @see org.eclipse.jdt.ui.actions.AbstractOpenWizardAction#createWizard() */ protected final INewWizard createWizard() throws CoreException { return new NewInterfaceCreationWizard(fPage); } |
| |||
/** * Sets a page to be used by the wizard or <code>null</code> to use a page initialized with values * from the current selection (see {@link #getSelection()} and {@link #setSelection(IStructuredSelection)}). * @param page the page to use or <code>null</code> */ public void setConfiguredWizardPage( [[#variable5ed9fbe0]] page) { fPage = page; } /* (non-Javadoc) * @see org.eclipse.jdt.ui.actions.AbstractOpenWizardAction#createWizard() */ protected final INewWizard createWizard() throws CoreException { return new [[#variable5ed9fb00]](fPage); } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#5ed9fbe0]] | NewAnnotationWizardPage |
1 | 2 | [[#5ed9fbe0]] | NewClassWizardPage |
1 | 3 | [[#5ed9fbe0]] | NewEnumWizardPage |
1 | 4 | [[#5ed9fbe0]] | NewInterfaceWizardPage |
2 | 1 | [[#5ed9fb00]] | NewAnnotationCreationWizard |
2 | 2 | [[#5ed9fb00]] | NewClassCreationWizard |
2 | 3 | [[#5ed9fb00]] | NewEnumCreationWizard |
2 | 4 | [[#5ed9fb00]] | NewInterfaceCreationWizard |