mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-27 18:48:12 +07:00
10 lines
151 B
Java
10 lines
151 B
Java
class Pair<L,R> {
|
|
public Pair(L l, R r) {
|
|
}
|
|
public L getL() {
|
|
return null;
|
|
}
|
|
public R getR() {
|
|
return null;
|
|
}
|
|
} |