}
// Implement createSheet directly in order to dynamically construct
// based on the contents of the stanza.
@Override protected Sheet createSheet() {
Entity entity = (Entity)value;
Sheet.Set props = Sheet.createPropertiesSet();
for (String key : entity.keySet()) {
if (key.equals("eai:acl") || key.equals("eai:attributes"))
continue;
props.put(new StanzaProperty(entity, key));
}
Sheet sheet = Sheet.createDefault();