package jalview.util; /** * System platform information used by Applet and Application * @author Jim Procter */ public class Platform { /** * sorry folks - Macs really are different * @return true if we do things in a special way. */ public boolean isAMac() { return java.lang.System.getProperty("os.name").indexOf("Mac")>-1; } }