()
| 121 | } |
| 122 | |
| 123 | public String toString() { |
| 124 | String s = ""; |
| 125 | if (array!=null) |
| 126 | s += "array["+array.length+"]"; |
| 127 | else if (str!=null) { |
| 128 | s = str; |
| 129 | if (s.length()>80) |
| 130 | s = s.substring(0, 80)+"..."; |
| 131 | s = s.replaceAll("\n", " | "); |
| 132 | s = "\""+s+"\""; |
| 133 | } else { |
| 134 | if (value==(int)value) |
| 135 | s += (int)value; |
| 136 | else |
| 137 | s += ij.IJ.d2s(value,4); |
| 138 | } |
| 139 | return s; |
| 140 | } |
| 141 | |
| 142 | public synchronized Object clone() { |
| 143 | try {return super.clone();} |
nothing calls this directly
no test coverage detected