Package com.goodow.realtime.operation.list.string

Examples of com.goodow.realtime.operation.list.string.StringDeleteComponent


    int length = length();
    if (startIndex < 0 || startIndex >= length || endIndex <= startIndex || endIndex > length) {
      throw new StringIndexOutOfBoundsException("StartIndex: " + startIndex + ", EndIndex: "
          + endIndex + ", Size: " + length);
    }
    StringDeleteComponent op =
        new StringDeleteComponent(id, startIndex, snapshot.substring(startIndex, endIndex));
    consumeAndSubmit(op);
  }
View Full Code Here

TOP

Related Classes of com.goodow.realtime.operation.list.string.StringDeleteComponent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.