mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +07:00
11 lines
257 B
Java
11 lines
257 B
Java
final class Alive implements java.io.Serializable {
|
|
private transient final Object elvis = new Object();
|
|
@Override
|
|
public String toString() {
|
|
if (elvis != null) {
|
|
return "uh-huh-huh";
|
|
} else {
|
|
return "the king is dead";
|
|
}
|
|
}
|
|
} |