mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
11 lines
298 B
Java
11 lines
298 B
Java
import p.AccountCalculator;
|
|
import p.ObjectParameterDescriptor;
|
|
|
|
import java.io.IOException;
|
|
|
|
class Test {
|
|
public static void calc(AccountCalculator calculator,
|
|
ObjectParameterDescriptor<String>.Holder holder) throws IOException{
|
|
calculator.getMetrics(holder);
|
|
}
|
|
} |