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