Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Schwarz2014-10-23 07:55:27 +0000
committerTobias Schwarz2014-10-23 08:44:21 +0000
commit0fccccbe002a3011ea6b7e34c700f32483dae4f3 (patch)
tree342bd95a16b8845498e9b9c472161bb79353dd9f /target_explorer/plugins/org.eclipse.tcf.te.ui/src
parent98bffb4478501666b7e068a7312c6b2beae20768 (diff)
downloadorg.eclipse.tcf-0fccccbe002a3011ea6b7e34c700f32483dae4f3.tar.gz
org.eclipse.tcf-0fccccbe002a3011ea6b7e34c700f32483dae4f3.tar.xz
org.eclipse.tcf-0fccccbe002a3011ea6b7e34c700f32483dae4f3.zip
Target Explorer: rework simulator service and config panel handling
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.ui/src')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.ui/src/org/eclipse/tcf/te/ui/interfaces/services/ISimulatorServiceUIDelegate.java55
1 files changed, 0 insertions, 55 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.ui/src/org/eclipse/tcf/te/ui/interfaces/services/ISimulatorServiceUIDelegate.java b/target_explorer/plugins/org.eclipse.tcf.te.ui/src/org/eclipse/tcf/te/ui/interfaces/services/ISimulatorServiceUIDelegate.java
deleted file mode 100644
index 720b353c1..000000000
--- a/target_explorer/plugins/org.eclipse.tcf.te.ui/src/org/eclipse/tcf/te/ui/interfaces/services/ISimulatorServiceUIDelegate.java
+++ /dev/null
@@ -1,55 +0,0 @@
-/*******************************************************************************
- * 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.ui.interfaces.services;
-
-import org.eclipse.tcf.te.runtime.interfaces.properties.IPropertiesContainer;
-import org.eclipse.tcf.te.runtime.services.interfaces.ISimulatorService;
-
-/**
- * Simulator service UI delegate.
- */
-public interface ISimulatorServiceUIDelegate {
-
- public static final String PROP_MODES = "Modes"; //$NON-NLS-1$
- public static final String PROP_MODE_LABEL_X = "ModeLabel"; //$NON-NLS-1$
- public static final String PROP_MODE_DESCRIPTION_X = "ModeDescription"; //$NON-NLS-1$
-
- /**
- * Get the simulator service the UI delegate is associated with.
- *
- * @return The simulator service.
- */
- public ISimulatorService getService();
-
- /**
- * Get the name of the simulator service to identify the simulator (type)
- * to the user in the UI.
- *
- * @return The simulator service name.
- */
- public String getName();
-
- /**
- * Get a description fo rthe given config.
- * This description is shown i.e. as tooltip of the configure button.
- * @param context The context for which the simulator should be configured.
- * @param config The configuration or <code>null</code>.
- * @return The description of the given config.
- */
- public String getDescription(Object context, String config);
-
- /**
- * Get properties for ui configuration.
- * @param context The conetxt.
- * @param config The current config.
- * @return The properties for ui configuartion
- */
- public IPropertiesContainer getProperties(Object context, String config);
-}

Back to the top