/[svn]/jlscp/trunk/src/org/linuxsampler/lscp/Client.java
ViewVC logotype

Diff of /jlscp/trunk/src/org/linuxsampler/lscp/Client.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1326 by iliev, Fri Sep 7 11:03:52 2007 UTC revision 1340 by iliev, Mon Sep 10 21:26:10 2007 UTC
# Line 3730  public class Client { Line 3730  public class Client {
3730                  ResultSet rs = getEmptyResultSet();                  ResultSet rs = getEmptyResultSet();
3731          }          }
3732                    
3733            /**
3734             * Starts an instrument editor for editing the loaded instrument
3735             * on the specified sampler channel.
3736             * @param samplerChn The sampler channel number.
3737             * @throws IOException If some I/O error occurs.
3738             * @throws LscpException If LSCP protocol corruption occurs.
3739             * @throws LSException If <code>samplerChn</code> is not a valid channel number or if
3740             * there is no instrument loaded on the specified sampler channel.
3741             * @see #getSamplerChannels
3742             */
3743            public synchronized void
3744            editInstrument(int samplerChn) throws IOException, LscpException, LSException {
3745                    verifyConnection();
3746                    out.writeLine("EDIT INSTRUMENT " + samplerChn);
3747                    if(getPrintOnlyMode()) return;
3748                    
3749                    ResultSet rs = getEmptyResultSet();
3750            }
3751            
3752                    
3753                    
3754          /**          /**

Legend:
Removed from v.1326  
changed lines
  Added in v.1340

  ViewVC Help
Powered by ViewVC