FreeWRL/FreeX3D  3.0.0
X3DSoundSourceNode.java
1 package org.web3d.x3d.sai;
2 
3 public interface X3DSoundSourceNode {
4  public float getPitch();
5  public void setPitch(float pitch) throws InvalidFieldValueException;
6  public void setDescription(String text);
7  public String getDescription(String text);
8 }