Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorptessier2019-05-20 08:46:48 +0000
committerNicolas FAUVERGUE2019-05-20 13:19:50 +0000
commitc13e7b75916bb5216b15ed9e1739149d79f6b456 (patch)
treed5b628733183b4c4a2451525995594a1032f2ed7 /examples
parent206f77979ba67b2842b83e93b679c26c1c8a4c85 (diff)
downloadorg.eclipse.papyrus-c13e7b75916bb5216b15ed9e1739149d79f6b456.tar.gz
org.eclipse.papyrus-c13e7b75916bb5216b15ed9e1739149d79f6b456.tar.xz
org.eclipse.papyrus-c13e7b75916bb5216b15ed9e1739149d79f6b456.zip
Bug 547253 - [papyrusCore] Add a better API linked to use case for the
pluginorg.eclipse.papyrus.infra.core.sasheditor"" This reverts commit 940e7bd48a4c9d9fbf0895cba04b7bdf6ca94d1d.
Diffstat (limited to 'examples')
-rw-r--r--examples/uml/org.eclipse.papyrus.example.uml.comment.editor.newresource/src/org/eclipse/papyrus/example/uml/comment/editor/newresource/factory/CommentEditorFactory.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/uml/org.eclipse.papyrus.example.uml.comment.editor.newresource/src/org/eclipse/papyrus/example/uml/comment/editor/newresource/factory/CommentEditorFactory.java b/examples/uml/org.eclipse.papyrus.example.uml.comment.editor.newresource/src/org/eclipse/papyrus/example/uml/comment/editor/newresource/factory/CommentEditorFactory.java
index 9dc24f36e3d..ec1672614e0 100644
--- a/examples/uml/org.eclipse.papyrus.example.uml.comment.editor.newresource/src/org/eclipse/papyrus/example/uml/comment/editor/newresource/factory/CommentEditorFactory.java
+++ b/examples/uml/org.eclipse.papyrus.example.uml.comment.editor.newresource/src/org/eclipse/papyrus/example/uml/comment/editor/newresource/factory/CommentEditorFactory.java
@@ -22,6 +22,7 @@ import org.eclipse.papyrus.example.uml.comment.editor.newresource.editor.Papyrus
import org.eclipse.papyrus.infra.core.editor.BackboneException;
import org.eclipse.papyrus.infra.ui.extension.diagrameditor.AbstractEditorFactory;
import org.eclipse.papyrus.infra.ui.multidiagram.actionbarcontributor.ActionBarContributorRegistry;
+import org.eclipse.papyrus.infra.core.sasheditor.api.IEditorPartWrapper;
import org.eclipse.papyrus.infra.core.sasheditor.contentprovider.IEditorModel;
import org.eclipse.papyrus.infra.core.sasheditor.contentprovider.IPageModel;
import org.eclipse.papyrus.infra.core.services.ServiceException;
@@ -79,7 +80,7 @@ public class CommentEditorFactory extends AbstractEditorFactory {
*
*
*/
- class TextEditorModel implements IEditorModel {
+ class TextEditorModel implements IEditorPartWrapper {
/**

Back to the top