コード例 #1
0
 public Attribute getAttributeBNWithSuper(String name) {
   if (attributesBN.containsKey(name)) {
     return attributesBN.get(name);
   }
   if (attributesPlusSuperBN == null) {
     getAttributesCached(true);
   }
   if (attributesPlusSuperBN.containsKey(name)) {
     return attributesPlusSuperBN.get(name);
   }
   return null;
 }