Exemplo n.º 1
0
 public boolean hasValue(StringProperty stringproperty) {
   HashMap hashmap = findTable(stringproperty);
   if (hashmap == null) {
     return false;
   } else {
     return hashmap.count(stringproperty) > 0;
   }
 }
Exemplo n.º 2
0
 public boolean hasValue(String s) {
   StringProperty stringproperty = getPropertyObject(s);
   if (stringproperty != null) {
     return hasValue(stringproperty);
   }
   HashMap hashmap = findTable(s);
   if (hashmap == null) {
     return false;
   } else {
     return hashmap.count(s) > 0;
   }
 }