Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan E. Jensen2013-07-18 17:28:08 +0000
committerRoberto E. Escobar2013-08-19 22:20:29 +0000
commitc23f7fe4768efea083c4635a646f381c1d92d0a9 (patch)
treee7b6a05163160699a9a57ddd90184e07a3cc0e7a /plugins/org.eclipse.osee.framework.core.dsl.ui.integration
parentf2a5a0bddddb70a67cd084720ee7bc422a323f6d (diff)
downloadorg.eclipse.osee-c23f7fe4768efea083c4635a646f381c1d92d0a9.tar.gz
org.eclipse.osee-c23f7fe4768efea083c4635a646f381c1d92d0a9.tar.xz
org.eclipse.osee-c23f7fe4768efea083c4635a646f381c1d92d0a9.zip
feature[ats_7HBF1]: DSL Editor Pre and Post Process
Add ability to pre and post process stored data for edit in the Embedded DSL Editor. Change-Id: Ie37872f74e0d0b0d86244f8be70800754dc925d7 Signed-off-by: Jonathan E. Jensen <jonathan.e.jensen2@boeing.com>
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.dsl.ui.integration')
-rw-r--r--plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeDslGrammar.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeDslGrammar.java b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeDslGrammar.java
index 8d04edbb94b..24247993f21 100644
--- a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeDslGrammar.java
+++ b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/src/org/eclipse/osee/framework/core/dsl/ui/integration/internal/OseeDslGrammar.java
@@ -12,6 +12,7 @@ package org.eclipse.osee.framework.core.dsl.ui.integration.internal;
import org.eclipse.osee.framework.core.dsl.ui.OseeDslAccess;
import org.eclipse.osee.framework.ui.skynet.DslGrammar;
+import org.eclipse.osee.framework.ui.skynet.DslGrammarStorageAdapter;
/**
* @author Roberto E. Escobar
@@ -33,4 +34,9 @@ public class OseeDslGrammar implements DslGrammar {
return OseeDslAccess.getInjector().getProvider(clazz).get();
}
+ @Override
+ public DslGrammarStorageAdapter getStorageAdapter() {
+ return null;
+ }
+
}

Back to the top