mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
11 lines
231 B
Java
11 lines
231 B
Java
public class Test {
|
|
void anotherMethod(String s);
|
|
String field;
|
|
/**
|
|
* @param anObject
|
|
* @param field
|
|
*/
|
|
static void method(Test anObject, String field) {
|
|
anObject.anotherMethod(field);
|
|
}
|
|
} |