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