Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/infra/emf/org.eclipse.papyrus.infra.emf.newchild/src/org/eclipse/papyrus/infra/emf/newchild/menu/AbstractCustomFillElement.java')
-rw-r--r--plugins/infra/emf/org.eclipse.papyrus.infra.emf.newchild/src/org/eclipse/papyrus/infra/emf/newchild/menu/AbstractCustomFillElement.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/plugins/infra/emf/org.eclipse.papyrus.infra.emf.newchild/src/org/eclipse/papyrus/infra/emf/newchild/menu/AbstractCustomFillElement.java b/plugins/infra/emf/org.eclipse.papyrus.infra.emf.newchild/src/org/eclipse/papyrus/infra/emf/newchild/menu/AbstractCustomFillElement.java
deleted file mode 100644
index c1f285e1f2e..00000000000
--- a/plugins/infra/emf/org.eclipse.papyrus.infra.emf.newchild/src/org/eclipse/papyrus/infra/emf/newchild/menu/AbstractCustomFillElement.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2011 CEA LIST.
- *
- * 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:
- * Camille Letavernier (CEA LIST) camille.letavernier@cea.fr - Initial API and implementation
- *****************************************************************************/
-package org.eclipse.papyrus.infra.emf.newchild.menu;
-
-import org.eclipse.jface.action.IMenuManager;
-import org.eclipse.papyrus.infra.emf.newchild.CustomFiller;
-
-/**
- * A base implementation for CustomFillElement
- *
- * @author Camille Letavernier
- */
-public abstract class AbstractCustomFillElement implements CustomFillElement {
-
- protected FillMenuGroup group;
-
- protected CustomFiller filler;
-
- protected Object selectedObject;
-
- public void setMenuItem(CustomFiller filler) {
- this.filler = filler;
- }
-
- public void setParentGroup(FillMenuGroup group) {
- this.group = group;
- }
-
- public void setSelectedObject(Object selectedObject) {
- this.selectedObject = selectedObject;
- }
-
- public abstract void fill(IMenuManager menuManager);
-
-}

Back to the top