blob: e0569d84b5473d9104bbc5f5638ad1a038f7ea8b [file] [log] [blame]
public class Test {
void anotherMethod(String s);
String field;
/**
* @param anObject
*/
void method(Test anObject, String field1) {
anObject.anotherMethod(field1);
}
}