1    // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
2    package org.xwt.plat;
3    import org.xwt.*;
4    import java.io.*;
5    
6    /** Platform class for PalmOS devices */
7    public class PalmOS extends Platform {
8    
9        public static int PilotMain(int cmd, int cmdBPB, int launchFlags) {
10           //Main.main(new String[] { });
11           return 0;
12       }
13   
14       protected void _decodeJPEG(InputStream is, Picture p) {
15           throw new Error("unimplemented");
16       }
17   
18   }
19