From: <dqu...@us...> - 2003-08-11 10:24:27
|
Update of /cvsroot/jsynthlib/JSynthLib/core In directory sc8-pr-cvs1:/tmp/cvs-serv26740 Added Files: PatchContainer.java Log Message: interface to get a patch from an internal frame (see PatchEdit) --- NEW FILE: PatchContainer.java --- package core; /** Internal frame (other than PatchEditorFrame) have to implement this interface in order to treat MIDI input when frame is displayed. Otherwise it could result in nullptrexception in PatchEdit. @author denis queffeulou mailto:dqu...@fr... */ public interface PatchContainer { Patch getPatch(); } |