JavaBeanのプロパティを調べる


var bean = new FooBean();

for(var i in bean) {
if(!i.match(/^(set|get)/))
print(i);
}

まあ、プロパティ以外も出てくるけど。