/** @return string */
 public final String buildTypeDisplayString() throws DbException {
   DbOOAdt type = getType();
   String str = (type != null ? type.getName() : LocaleMgr.misc.getString("<undef>"));
   if (getElementType() != null) str = str + "(" + getElementType().getName() + ")";
   if (getTypeUse() != null && isTypeUseAfterType()) str = str + getTypeUse();
   return str;
 }
 public void set(MetaRelationN relation, DbObject neighbor, int op) throws DbException {
   super.set(relation, neighbor, op);
 }
 public void set(MetaField metaField, Object value) throws DbException {
   if (metaField.getMetaClass() == metaClass) {
     basicSet(metaField, value);
   } else super.set(metaField, value);
 }