Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfrijters <jfrijters>2008-09-21 13:45:00 +0400
committerjfrijters <jfrijters>2008-09-21 13:45:00 +0400
commit5cd8a0b5b99a3c0bb678d42ff0afffdb292d4e90 (patch)
tree93f1d01bfb2af7bb881aacc5f287a1311a8ac25b /openjdk/icedtea/rt
parent90fd546fdb08a8b4a3ae1c34b7cd0c5f6195cc84 (diff)
Moved sound factory methods to runtime, to allow for easier experimentation with a sound implementation.
Diffstat (limited to 'openjdk/icedtea/rt')
-rw-r--r--openjdk/icedtea/rt/com/sun/media/sound/JDK13Services.java18
1 files changed, 3 insertions, 15 deletions
diff --git a/openjdk/icedtea/rt/com/sun/media/sound/JDK13Services.java b/openjdk/icedtea/rt/com/sun/media/sound/JDK13Services.java
index c9259662..dec01710 100644
--- a/openjdk/icedtea/rt/com/sun/media/sound/JDK13Services.java
+++ b/openjdk/icedtea/rt/com/sun/media/sound/JDK13Services.java
@@ -41,22 +41,10 @@ import java.util.List;
public class JDK13Services {
- public static String getDefaultProviderClassName(Class deviceClass) {
- throw new RuntimeException("Not implemented.");
- // TODO Auto-generated method stub
+ public static native String getDefaultProviderClassName(Class deviceClass);
- }
+ public static native String getDefaultInstanceName(Class deviceClass);
- public static String getDefaultInstanceName(Class deviceClass) {
- throw new RuntimeException("Not implemented.");
- // TODO Auto-generated method stub
-
- }
-
- public static List getProviders(Class providerClass) {
- throw new RuntimeException("Not implemented.");
- // TODO Auto-generated method stub
-
- }
+ public static native List getProviders(Class providerClass);
}