Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'profiling/org.eclipse.linuxtools.profiling.time/src/org/eclipse/linuxtools/profiling/time/launch/TimeLaunchConfigurationDelegate.java')
-rw-r--r--profiling/org.eclipse.linuxtools.profiling.time/src/org/eclipse/linuxtools/profiling/time/launch/TimeLaunchConfigurationDelegate.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/profiling/org.eclipse.linuxtools.profiling.time/src/org/eclipse/linuxtools/profiling/time/launch/TimeLaunchConfigurationDelegate.java b/profiling/org.eclipse.linuxtools.profiling.time/src/org/eclipse/linuxtools/profiling/time/launch/TimeLaunchConfigurationDelegate.java
new file mode 100644
index 0000000000..07699c487d
--- /dev/null
+++ b/profiling/org.eclipse.linuxtools.profiling.time/src/org/eclipse/linuxtools/profiling/time/launch/TimeLaunchConfigurationDelegate.java
@@ -0,0 +1,33 @@
+/*******************************************************************************
+ * Copyright (c) 2012 Red Hat, Inc.
+ * 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:
+ * Red Hat initial API and implementation
+ *******************************************************************************/
+package org.eclipse.linuxtools.profiling.time.launch;
+
+import org.eclipse.linuxtools.internal.profiling.provider.launch.ProviderLaunchConfigurationDelegate;
+import org.eclipse.linuxtools.profiling.time.TimeConstants;
+
+/**
+ * The launch configuration delegate for time profiling plug-ins.
+ *
+ */
+public class TimeLaunchConfigurationDelegate extends
+ ProviderLaunchConfigurationDelegate {
+
+ @Override
+ protected String getPluginID() {
+ return TimeConstants.PLUGIN_ID;
+ }
+
+ @Override
+ public String getProfilingType() {
+ return TimeConstants.PROFILING_TYPE;
+ }
+
+}

Back to the top