diff options
author | Stéphane Bégaudeau | 2016-05-04 11:58:07 +0000 |
---|---|---|
committer | Stéphane Bégaudeau | 2016-05-04 12:19:57 +0000 |
commit | 773c0da614ff4c33429106a8ba9be2087d938118 (patch) | |
tree | 74b0df03f8604364d60887de4a757b0f6557a6ef | |
parent | db04ece493b95f8eee8c8c548a602e4d2f2c638e (diff) | |
download | org.eclipse.eef-773c0da614ff4c33429106a8ba9be2087d938118.tar.gz org.eclipse.eef-773c0da614ff4c33429106a8ba9be2087d938118.tar.xz org.eclipse.eef-773c0da614ff4c33429106a8ba9be2087d938118.zip |
Remove useless APIs
Change-Id: I3320c6bb4837a1045256c4e1031bd38ba1d83d63
Signed-off-by: Stéphane Bégaudeau <stephane.begaudeau@obeo.fr>
4 files changed, 2 insertions, 40 deletions
diff --git a/plugins/org.eclipse.eef.core/src/org/eclipse/eef/core/api/EEFContainerParent.java b/plugins/org.eclipse.eef.core/src/org/eclipse/eef/core/api/EEFContainerParent.java deleted file mode 100644 index 4f2ee56b4..000000000 --- a/plugins/org.eclipse.eef.core/src/org/eclipse/eef/core/api/EEFContainerParent.java +++ /dev/null @@ -1,20 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2015 Obeo. - * 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: - * Obeo - initial API and implementation - *******************************************************************************/ -package org.eclipse.eef.core.api; - -/** - * This interface is used as the common parent of both {@link EEFContainer} and {@link EEFGroup}. - * - * @author sbegaudeau - */ -public interface EEFContainerParent { - // nothing -} diff --git a/plugins/org.eclipse.eef.core/src/org/eclipse/eef/core/api/EEFGroup.java b/plugins/org.eclipse.eef.core/src/org/eclipse/eef/core/api/EEFGroup.java index cee2a8f9d..75556d374 100644 --- a/plugins/org.eclipse.eef.core/src/org/eclipse/eef/core/api/EEFGroup.java +++ b/plugins/org.eclipse.eef.core/src/org/eclipse/eef/core/api/EEFGroup.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Obeo. + * Copyright (c) 2015, 2016 Obeo. * 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 @@ -19,7 +19,7 @@ import org.eclipse.sirius.common.interpreter.api.IVariableManager; * * @author sbegaudeau */ -public interface EEFGroup extends EEFContainerParent { +public interface EEFGroup { /** * Returns the description of the {@link EEFGroup}. * diff --git a/plugins/org.eclipse.eef.ide.ui.properties/src/org/eclipse/eef/ide/ui/properties/api/EEFSection.java b/plugins/org.eclipse.eef.ide.ui.properties/src/org/eclipse/eef/ide/ui/properties/api/EEFSection.java index 288a804df..1afb6a6b3 100644 --- a/plugins/org.eclipse.eef.ide.ui.properties/src/org/eclipse/eef/ide/ui/properties/api/EEFSection.java +++ b/plugins/org.eclipse.eef.ide.ui.properties/src/org/eclipse/eef/ide/ui/properties/api/EEFSection.java @@ -80,13 +80,4 @@ public class EEFSection implements IEEFSection { public boolean shouldUseExtraSpace() { return true; } - - /** - * Return the eefPage. - * - * @return the eefPage - */ - public EEFPage getEEFPage() { - return this.tab.getEEFPage(); - } } diff --git a/plugins/org.eclipse.eef.ide.ui.properties/src/org/eclipse/eef/ide/ui/properties/api/EEFSectionDescriptor.java b/plugins/org.eclipse.eef.ide.ui.properties/src/org/eclipse/eef/ide/ui/properties/api/EEFSectionDescriptor.java index 0332d04a3..fbcdb9815 100644 --- a/plugins/org.eclipse.eef.ide.ui.properties/src/org/eclipse/eef/ide/ui/properties/api/EEFSectionDescriptor.java +++ b/plugins/org.eclipse.eef.ide.ui.properties/src/org/eclipse/eef/ide/ui/properties/api/EEFSectionDescriptor.java @@ -82,13 +82,4 @@ public class EEFSectionDescriptor extends AbstractEEFSectionDescriptor { } }; } - - /** - * Returns the EEFPage used to managed this section descriptor. - * - * @return The EEFPage used to managed this section descriptor - */ - public EEFPage getEEFPage() { - return eefPage; - } } |