Returns a string representation of the circle. @return String
()
| 124 | * @return String |
| 125 | */ |
| 126 | @Override |
| 127 | public String toString() { |
| 128 | String name = getClass().getName(); |
| 129 | name = name.substring(1+name.lastIndexOf("."))+'['; //$NON-NLS-1$ |
| 130 | name += "x="+x; //$NON-NLS-1$ |
| 131 | name += ",y="+y; //$NON-NLS-1$ |
| 132 | name += ",r_pix="+pixRadius+']'; //$NON-NLS-1$ |
| 133 | return name; |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Gets a loader that allows a Circle to be represented as XML data. |
no test coverage detected