Returns a string representation of this drop location. This method is intended to be used for debugging purposes, and the content and format of the returned string may vary between implementations. @return a string representation of this drop location
()
| 410 | * @return a string representation of this drop location |
| 411 | */ |
| 412 | public String toString() { |
| 413 | return getClass().getName() |
| 414 | + "[dropPoint=" + getDropPoint() + "," |
| 415 | + "path=" + path + "," |
| 416 | + "childIndex=" + index + "]"; |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | /** |
no test coverage detected