Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2013-01-13 11:01:59 +0000
committerUwe Stieber2013-01-13 11:02:50 +0000
commit4f0d4f4ec781667e04a0b7bd1ffa54201977ea85 (patch)
tree2cb03c44220e345be1d163c3ef62687a36899ba8 /target_explorer
parent76106adce258dd42f976a54b33dee62f3ce229e0 (diff)
downloadorg.eclipse.tcf-4f0d4f4ec781667e04a0b7bd1ffa54201977ea85.tar.gz
org.eclipse.tcf-4f0d4f4ec781667e04a0b7bd1ffa54201977ea85.tar.xz
org.eclipse.tcf-4f0d4f4ec781667e04a0b7bd1ffa54201977ea85.zip
Target Explorer: Added simulator service interface
Diffstat (limited to 'target_explorer')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/ISimulatorService.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/ISimulatorService.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/ISimulatorService.java
new file mode 100644
index 000000000..c0559ef3c
--- /dev/null
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/ISimulatorService.java
@@ -0,0 +1,22 @@
+/*******************************************************************************
+ * Copyright (c) 2013 Wind River Systems, Inc. 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 http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Wind River Systems - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.tcf.te.runtime.services.interfaces;
+
+/**
+ * Simulator service.
+ * <p>
+ * Allows to start/stop external simulators.
+ * <p>
+ * Simulator instance related UI parts, like configuration panels, are retrieved
+ * by clients via the {@link IUIService}.
+ */
+public interface ISimulatorService extends IService {
+
+}

Back to the top