Set the start position of the data in the buffer. @param start the new start position
(int start)
| 133 | * @param start the new start position |
| 134 | */ |
| 135 | public void setStart(int start) { |
| 136 | if (end < start) { |
| 137 | end = start; |
| 138 | } |
| 139 | this.start = start; |
| 140 | } |
| 141 | |
| 142 | |
| 143 | /** |
no outgoing calls