This method tries to guess if we are on a UNIX system. It does this by checking the value of System.getProperty("file.separator") ; if this is "/" it concludes we are on UNIX. This is obviously not a very good idea in the general case, so nothing much should be made to depend on this meth
()
| 981 | * opposed to <TT>gate.xml</TT>)</B>. |
| 982 | */ |
| 983 | public static boolean runningOnUnix() { |
| 984 | return Strings.getFileSep().equals("/"); |
| 985 | } // runningOnUnix |
| 986 | |
| 987 | /** |
| 988 | * This method tries to guess if we are on a Mac OS X system. It does this |