/[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 1393 by iliev, Sun Oct 7 20:29:41 2007 UTC revision 1421 by iliev, Sun Oct 14 18:08:45 2007 UTC
# Line 2563  public class Client { Line 2563  public class Client {
2563                                    
2564                  for(String s : lnS) {                  for(String s : lnS) {
2565                          if(s.startsWith("NAME: ")) {                          if(s.startsWith("NAME: ")) {
2566                                  name = s.substring("NAME: ".length());                                  name = toNonEscapedString(s.substring("NAME: ".length()));
2567                          } else if(s.startsWith("DEFAULT: ")) {                          } else if(s.startsWith("DEFAULT: ")) {
2568                                  b = Boolean.parseBoolean(s.substring("DEFAULT: ".length()));                                  b = Boolean.parseBoolean(s.substring("DEFAULT: ".length()));
2569                          } else {                          } else {
# Line 3750  public class Client { Line 3750  public class Client {
3750           * @see #getSamplerChannels           * @see #getSamplerChannels
3751           */           */
3752          public synchronized void          public synchronized void
3753          editInstrument(int samplerChn) throws IOException, LscpException, LSException {          editChannelInstrument(int samplerChn) throws IOException, LscpException, LSException {
3754                  verifyConnection();                  verifyConnection();
3755                  out.writeLine("EDIT INSTRUMENT " + samplerChn);                  out.writeLine("EDIT CHANNEL INSTRUMENT " + samplerChn);
3756                  if(getPrintOnlyMode()) return;                  if(getPrintOnlyMode()) return;
3757                                    
3758                  ResultSet rs = getEmptyResultSet();                  ResultSet rs = getEmptyResultSet();

Legend:
Removed from v.1393  
changed lines
  Added in v.1421

  ViewVC Help
Powered by ViewVC