~ubuntu-branches/ubuntu/raring/libhamcrest1.2-java/raring

« back to all changes in this revision

Viewing changes to hamcrest-unit-test/src/main/java/org/hamcrest/core/SampleBaseClass.java

  • Committer: Package Import Robot
  • Author(s): Brian Thomason
  • Date: 2011-12-02 17:55:55 UTC
  • Revision ID: package-import@ubuntu.com-20111202175555-xuj86jbpi8mehr1o
Tags: upstream-1.2
ImportĀ upstreamĀ versionĀ 1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.hamcrest.core;
 
2
 
 
3
public class SampleBaseClass {
 
4
    String value;
 
5
 
 
6
    public SampleBaseClass(String value) {
 
7
        this.value = value;
 
8
    }
 
9
 
 
10
    @Override
 
11
    public String toString() {
 
12
        return value;
 
13
    }
 
14
 
 
15
    @Override
 
16
    public boolean equals(Object obj) {
 
17
        return obj instanceof SampleBaseClass && value.equals(((SampleBaseClass) obj).value);
 
18
    }
 
19
}