mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 12:20:55 +07:00
14 lines
172 B
Java
14 lines
172 B
Java
class Test {
|
|
|
|
public Test(Object a) {
|
|
}
|
|
|
|
public Test(int i) {
|
|
this(new Integer(i));
|
|
}
|
|
|
|
public Test(long l) {
|
|
this(new Long(l));
|
|
}
|
|
}
|