2015-04-20 15:36:01 -07:00
|
|
|
|
//: generics/CountedObject.java
|
2015-05-29 14:18:51 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
2015-04-20 15:36:01 -07:00
|
|
|
|
|
|
|
|
|
public class CountedObject {
|
|
|
|
|
private static long counter = 0;
|
|
|
|
|
private final long id = counter++;
|
|
|
|
|
public long id() { return id; }
|
2015-05-05 11:20:13 -07:00
|
|
|
|
@Override
|
2015-04-20 15:36:01 -07:00
|
|
|
|
public String toString() { return "CountedObject " + id;}
|
|
|
|
|
} ///:~
|