Source code: com/siemens/mp/media/Manager.java
1 /*
2 * Siemens API for MicroEmulator
3 * Copyright (C) 2003 Markus Heberling <markus@heberling.net>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19 package com.siemens.mp.media;
20
21 import com.siemens.mp.game.Sound;
22 import com.siemens.mp.media.protocol.DataSource;
23 import java.io.IOException;
24 import java.io.InputStream;
25
26
27 public final class Manager {
28 private Manager() {
29 }
30
31 public static String[] getSupportedContentTypes(String protocol) {
32 return new String[0];
33 }
34
35 public static String[] getSupportedProtocols(String content_type) {
36 return new String[0];
37 }
38
39 public static Player createPlayer(String locator)
40 throws IOException, MediaException {
41 throw new MediaException("Not implemented");
42 }
43
44 public static Player createPlayer(InputStream stream, String type) throws IOException, MediaException {
45 throw new MediaException("Content not supported");
46 }
47
48 public static Player createPlayer(DataSource source)
49 throws IOException, MediaException {
50 throw new MediaException("Not implemented");
51 }
52
53 public static void playTone(int note, int duration, int volume)
54 throws MediaException {
55 }
56
57 public static TimeBase getSystemTimeBase() {
58 if(sysTimeBase == null)
59 sysTimeBase = new SystemTimeBase();
60 return sysTimeBase;
61 }
62
63 private static SystemTimeBase sysTimeBase;
64 }