Exemplo n.º 1
0
 @Override
 public AnAttrib getAttrib(String propertyName) {
   AnAttrib a = attribMap.get(propertyName);
   if (a == null && parentAnObject != null) {
     a = parentAnObject.getAttrib(propertyName);
   }
   return a;
 }