Skip to content
Snippets Groups Projects
Select Git revision
  • ba28a0649d60b7f13cccd7e6df2dd67570542d34
  • master default
  • renovate/junit-jupiter-engine.version
  • renovate/opencsv.version
  • renovate/org.springframework.boot-spring-boot-starter-parent-3.x
  • renovate/testcontainer.version
  • renovate/jgit.version
  • renovate/selenium.version
  • renovate/datatables.version
  • renovate/jacoco-maven-plugin.version
  • renovate/org.apache.maven.plugins-maven-surefire-plugin-3.x
  • demo
  • v1_8_1
  • v2.18.0
  • v2.17.2
  • v2.17.1
  • v2.17.0
  • v2.16.1
  • v2.16.0
  • v2.15.1
  • v2.15.0
  • v2.14.0
  • v2.13.0
  • v2.12.0
  • v2.11.0
  • v2.10.0
  • v2.9.2
  • v2.9.1
  • v2.9.0
  • v2.8.0
  • testPipeline2
  • v2.7.0
  • v2.6.1
33 results

pom.xml

Blame
  • NativeAudio.java 499 B
    package de.tobias.playpad;
    
    public class NativeAudio {
    
    	public static native void play(int id);
    
    	public static native void pause(int id);
    
    	public static native void stop(int id);
    
    	public static native double getVolume(int id);
    	
    	public static native void setVolume(int id, double volume);
    
    	public static native void load(int id, String path);
    
    	public static native void dispose(int id);
    
    	public static native double getDuration(int id);
    	
    	public static native double getPosition(int id);
    }