Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 68d8ea5e249c4f213c700346dbebbb12f8f82ca7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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