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/TimePreferencesPage.java')
-rw-r--r--profiling/org.eclipse.linuxtools.profiling.time/src/org/eclipse/linuxtools/profiling/time/TimePreferencesPage.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/profiling/org.eclipse.linuxtools.profiling.time/src/org/eclipse/linuxtools/profiling/time/TimePreferencesPage.java b/profiling/org.eclipse.linuxtools.profiling.time/src/org/eclipse/linuxtools/profiling/time/TimePreferencesPage.java
new file mode 100644
index 0000000000..68d8ea5e24
--- /dev/null
+++ b/profiling/org.eclipse.linuxtools.profiling.time/src/org/eclipse/linuxtools/profiling/time/TimePreferencesPage.java
@@ -0,0 +1,26 @@
+/*******************************************************************************
+ * 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;
+
+import org.eclipse.linuxtools.internal.profiling.provider.AbstractProviderPreferencesPage;
+
+/**
+ * The preferences page for this plug-in, contributing to the global profiling
+ * preference page.
+ *
+ */
+public class TimePreferencesPage extends AbstractProviderPreferencesPage {
+
+ @Override
+ protected String getProfilingType() {
+ return TimeConstants.PROFILING_TYPE;
+ }
+}

Back to the top