// TODO: what was the difference between propput and propputref?
Set<String> putMethods = new HashSet<String>();
for( int j=0; j<t.countMethods(); j++ ) {
IMethod m = t.getMethod(j);
InvokeKind kind = m.getKind();
if(kind== InvokeKind.PROPERTYPUT || kind== InvokeKind.PROPERTYPUTREF) {
if(!putMethods.add(m.getName()))
continue; // already added
}
try {