1 package sound.soundDemo; 2 3 /* 4 * Copyright 2002 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 9 /** 10 * The interface for the JavaSound tabs to open and close audio resources. 11 */ 12 public interface ControlContext { 13 public void open(); 14 15 public void close(); 16 } 17