01: package com.apple.eio;
02:
03: import java.io.IOException;
04:
05: public class FileManager {
06: public static void setFileTypeAndCreator(String s, int i1, int i2)
07: throws IOException {
08: }
09:
10: public static int getFileType(String s) throws IOException {
11: return 0;
12: }
13:
14: public static int getFileCreator(String s) throws IOException {
15: return 0;
16: }
17: }
|