X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.fastlz%2Fsrc%2Forg%2Fsimantics%2Ffastlz%2FOSType.java;h=39abe6ff9350eb58ef7b2b542b7e675e643d96f0;hb=HEAD;hp=0ea40b52a75ec1d561197019e33578b0cadc5a41;hpb=969bd23cab98a79ca9101af33334000879fb60c5;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.fastlz/src/org/simantics/fastlz/OSType.java b/bundles/org.simantics.fastlz/src/org/simantics/fastlz/OSType.java index 0ea40b52a..39abe6ff9 100644 --- a/bundles/org.simantics.fastlz/src/org/simantics/fastlz/OSType.java +++ b/bundles/org.simantics.fastlz/src/org/simantics/fastlz/OSType.java @@ -1,34 +1,34 @@ -/******************************************************************************* - * Copyright (c) 2007, 2010 Association for Decentralized Information Management - * in Industry THTH ry. - * 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: - * VTT Technical Research Centre of Finland - initial API and implementation - *******************************************************************************/ -package org.simantics.fastlz; - -/** - * @author Tuukka Lehtonen - */ -public enum OSType { - APPLE, LINUX, SUN, WINDOWS, UNKNOWN; - - public static OSType calculate() { - String osName = System.getProperty("os.name"); - assert osName != null; - osName = osName.toLowerCase(); - if (osName.startsWith("mac os x")) - return APPLE; - if (osName.startsWith("windows")) - return WINDOWS; - if (osName.startsWith("linux")) - return LINUX; - if (osName.startsWith("sun")) - return SUN; - return UNKNOWN; - } +/******************************************************************************* + * Copyright (c) 2007, 2010 Association for Decentralized Information Management + * in Industry THTH ry. + * 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: + * VTT Technical Research Centre of Finland - initial API and implementation + *******************************************************************************/ +package org.simantics.fastlz; + +/** + * @author Tuukka Lehtonen + */ +public enum OSType { + APPLE, LINUX, SUN, WINDOWS, UNKNOWN; + + public static OSType calculate() { + String osName = System.getProperty("os.name"); + assert osName != null; + osName = osName.toLowerCase(); + if (osName.startsWith("mac os x")) + return APPLE; + if (osName.startsWith("windows")) + return WINDOWS; + if (osName.startsWith("linux")) + return LINUX; + if (osName.startsWith("sun")) + return SUN; + return UNKNOWN; + } } \ No newline at end of file