Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Spungin2015-03-27 12:41:18 +0000
committerSteven Spungin2015-03-27 12:41:18 +0000
commit7aa280fdfbe32d109f23e480edb9052e83c8d88f (patch)
tree17ae3b50d2c20869578d28d74fa05ee46f576f3e
parent649f0de57e33d21d077dd04326b2da064c56e315 (diff)
downloadeclipse.platform.ui-7aa280fdfbe32d109f23e480edb9052e83c8d88f.tar.gz
eclipse.platform.ui-7aa280fdfbe32d109f23e480edb9052e83c8d88f.tar.xz
eclipse.platform.ui-7aa280fdfbe32d109f23e480edb9052e83c8d88f.zip
Bug 463223 - Write Javadoc for MModelFragment.merge
Change-Id: I379aa9f48e862928309f5c08b1d3d2a7507228bc Signed-off-by: Steven Spungin <steven@spungin.tv>
-rw-r--r--bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/fragment/MModelFragment.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/fragment/MModelFragment.java b/bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/fragment/MModelFragment.java
index da931e136be..121f1e122b7 100644
--- a/bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/fragment/MModelFragment.java
+++ b/bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/fragment/MModelFragment.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2010, 2013 BestSolution.at and others.
+ * Copyright (c) 2010, 2015 BestSolution.at 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
@@ -8,6 +8,7 @@
* Contributors:
* Tom Schindl <tom.schindl@bestsolution.at> - initial API and implementation
* IBM Corporation - initial API and implementation
+ * Steven Spungin <steven@spungin.tv> - Bug 463223
*/
package org.eclipse.e4.ui.model.fragment;
@@ -62,6 +63,9 @@ public interface MModelFragment {
/**
* <!-- begin-user-doc -->
+ * Merges an MModelFragment into an MApplication.
+ * @param application The MApplication to merge into. Must not be null.
+ * @return A list of MApplicationElements that were added to the MApplication. Must not be null.
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* <p>

Back to the top