blob: f786f51c9f618aa3730af2cff16f0efb6a14b91b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.tests.harness.util;
import org.eclipse.swt.SWT;
/**
* The Platform Util class is used to test for which platform we are in
*/
public class PlatformUtil {
/**
* Determine if we are running on the Mac platform.
*
* @return true if we are runnig on the Mac platform.
*/
public static boolean onMac() {
String platform = SWT.getPlatform();
return platform.equals("carbon");
}
}