Source code: com/apple/mrj/MRJFileUtils.java
1 package com.apple.mrj;
2 import java.io.*;
3
4 /**
5 * This is a stub for the MRJFileUtils class in Mac OS, so I can compile on other platforms.
6 *
7 * @author Alok Saldanha <alok@genome.stanford.edu>
8 * @version $Revision: 1.3 $ $Date: 2003/06/22 08:39:03 $
9 */
10 public class MRJFileUtils {
11 /**
12 * Opens URL in some operating system dependant fashion.
13 *
14 * @param url url to be loaded
15 * @exception IOException Problem opening url.
16 */
17 public static void openURL(String url) throws IOException {
18 throw new IOException("Somehow, you called Alok's stub MRJ");
19 }
20 }
21