Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Elder2013-12-11 14:11:13 +0000
committerPaul Elder2013-12-11 14:14:00 +0000
commitf7292e8781ab96b67f2e522332d6eae7101052b3 (patch)
tree2f32a2708b46c4953f27c7e65acdc0802a5a6c4b
parent8668d206f87bf9d1b696d7f14072cdb510aebdf5 (diff)
downloadeclipse.platform.ui-f7292e8781ab96b67f2e522332d6eae7101052b3.tar.gz
eclipse.platform.ui-f7292e8781ab96b67f2e522332d6eae7101052b3.tar.xz
eclipse.platform.ui-f7292e8781ab96b67f2e522332d6eae7101052b3.zip
bug 405612: [Model] TrimElement could be marked as interface
Remove obsoleted class TrimElementImpl Change-Id: I81fb36df30bf20dbe79ed0eb6474ea070d0c8786
-rw-r--r--bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/basic/impl/TrimElementImpl.java46
1 files changed, 0 insertions, 46 deletions
diff --git a/bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/basic/impl/TrimElementImpl.java b/bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/basic/impl/TrimElementImpl.java
deleted file mode 100644
index 72a3b46a87d..00000000000
--- a/bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/ui/basic/impl/TrimElementImpl.java
+++ /dev/null
@@ -1,46 +0,0 @@
-/**
- * Copyright (c) 2008, 2010 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.e4.ui.model.application.ui.basic.impl;
-
-import org.eclipse.e4.ui.model.application.ui.basic.MTrimElement;
-import org.eclipse.e4.ui.model.application.ui.impl.UIElementImpl;
-import org.eclipse.emf.ecore.EClass;
-
-/**
- * <!-- begin-user-doc -->
- * An implementation of the model object '<em><b>Trim Element</b></em>'.
- * <!-- end-user-doc -->
- * <p>
- * </p>
- *
- * @generated
- */
-public abstract class TrimElementImpl extends UIElementImpl implements MTrimElement {
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- protected TrimElementImpl() {
- super();
- }
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- @Override
- protected EClass eStaticClass() {
- return BasicPackageImpl.Literals.TRIM_ELEMENT;
- }
-
-} //TrimElementImpl

Back to the top