Exemple #1
0
    public boolean hasAttribute(String key, Class<?> clazz) {
      boolean b;

      attributeLock.lock();
      b = wrappedElement.hasAttribute(key, clazz);
      attributeLock.unlock();

      return b;
    }
Exemple #2
0
    public boolean hasAttribute(String key) {
      boolean b;

      attributeLock.lock();
      b = wrappedElement.hasAttribute(key);
      attributeLock.unlock();

      return b;
    }