Slide 11
Slide 11 text
public final class Sample {
private final int counter;
public final int getCounter() {
return this.counter;
}
public Sample(int counter) {
this.counter = counter;
}
public final int component1() {
return this.counter;
}
@NotNull
public final Sample copy(int counter) {
return new Sample(counter);
}
// $FF: synthetic method
// $FF: bridge method
@NotNull
public static Sample copy$default(Sample var0, int var1, int var2, Object var3) {
if((var2 & 1) != 0) {
var1 = var0.counter;
}
return var0.copy(var1);
}
public String toString() {
return "Sample(counter=" + this.counter + ")";
}
public int hashCode() {
return this.counter;
}
public boolean equals(Object var1) {
if(this != var1) {
if(var1 instanceof Sample) {
Sample var2 = (Sample)var1;
if(this.counter == var2.counter) {
return true;
}
}
return false;
} else {
return true;
}
}
}
@Metadata(
k = 1,
mv = {1, 1, 6},
bv = {1, 0, 1},
d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0002\b\u0006\n\u0002\u0010\u000b\n\u0002\b\u0003\n\u0002\u0010\u000e\n\u0000\b\u0086\b\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u0010\
d2 = {"LSample;", "", "counter", "", "(I)V", "getCounter", "()I", "component1", "copy", "equals", "", "other", "hashCode", "toString", "", "production sources for module app"}
))