/**
  * Creates a new ButtonElementPropertySource.
  *
  * @param element the element whose properties this instance represents
  */
 public AttributeDefPropertySource(Contained element) {
   super(element);
   abstObj = (AttributeDef) element;
   root = mf.getRootModule(abstObj);
   idlT.clear();
   idlT.addAll(mf.getIDLTypes(abstObj));
   idlTypeNames = mf.getIDLTTypedNames(idlT);
   idlTemp = CCMConstants.getIDLTemplate(abstObj.getIDLType(), idlT);
 }