Indicates whether or not this vector can be mutated. If false, any method that contains "mutate" will not work. By default, this returns true @return true if the vector supports being altered, false other wise.
()
| 57 | * other wise. |
| 58 | */ |
| 59 | public boolean canBeMutated() |
| 60 | { |
| 61 | return true; |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Returns a suitable vector that can be altered for some function of the |