1 /* 2 * To change this template, choose Tools | Templates 3 * and open the template in the editor. 4 */ 5 package com.jme3.audio; 6 7 /** 8 * 9 * @author Nehon 10 */ 11 public interface SeekableStream{ 12 13 public void setTime(float time); 14 15 } 16