mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
11 lines
278 B
Java
11 lines
278 B
Java
public class Parameters {
|
|
public void subject(int p) {
|
|
System.out.println(<selection>p+1</selection>);
|
|
System.out.println(p+1);
|
|
}
|
|
|
|
public void context() {
|
|
subject(1);
|
|
subject(2);
|
|
}
|
|
} |