Просмотр исходного кода

Added editor injector to IDomainInjectorProvider interface.

Axel Terfloth 10 лет назад
Родитель
Сommit
a142cd5635

+ 6 - 0
plugins/org.yakindu.sct.domain/src/org/yakindu/sct/domain/extension/IDomainInjectorProvider.java

@@ -16,6 +16,7 @@ import com.google.inject.Injector;
 
 /**
  * @author andreas muelder - Initial contribution and API
+ * @author terfloth
  * 
  */
 public interface IDomainInjectorProvider {
@@ -45,4 +46,9 @@ public interface IDomainInjectorProvider {
 	 */
 	public Injector getEmbeddedEditorInjector(String elementKey);
 
+	
+	/**
+	 * Returns an injector for all editor and UI related stuff.
+	 */
+	public Injector getEditorInjector();
 }