This commit is contained in:
Dmitry Jemerov
2009-09-10 21:57:00 +04:00
parent 7980717db9
commit 10ca2b4e5f
48 changed files with 10 additions and 4 deletions
@@ -0,0 +1,11 @@
public class Test {
void anotherMethod(String s);
String field;
/**
* @param anObject
* @param field
*/
static void method(Test anObject, String field) {
anObject.anotherMethod(field);
}
}