(Object o)
| 247 | } |
| 248 | |
| 249 | public boolean equals(Object o) { |
| 250 | if (!(o instanceof Content)) { |
| 251 | return false; |
| 252 | } |
| 253 | Content that = (Content) o; |
| 254 | return this.url.equals(that.url) && this.base.equals(that.base) |
| 255 | && Arrays.equals(this.getContent(), that.getContent()) |
| 256 | && this.contentType.equals(that.contentType) |
| 257 | && this.metadata.equals(that.metadata); |
| 258 | } |
| 259 | |
| 260 | public String toString() { |
| 261 | StringBuffer buffer = new StringBuffer(); |
no test coverage detected