mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
12 lines
282 B
Plaintext
12 lines
282 B
Plaintext
class Mapping {
|
|
private int myInt;
|
|
|
|
public void method(boolean b, int i, char c, double d, int[] ia, String s) {
|
|
myInt = b ? i + c - (int)d: ia.length + s.hashCode();
|
|
}
|
|
|
|
public void context() {
|
|
method(true || false, 5, 'z', 3.14, new int[] { 0, 1 }, "abc");
|
|
}
|
|
}
|