public boolean hasAttribute(String key, Class<?> clazz) { boolean b; attributeLock.lock(); b = wrappedElement.hasAttribute(key, clazz); attributeLock.unlock(); return b; }
public boolean hasAttribute(String key) { boolean b; attributeLock.lock(); b = wrappedElement.hasAttribute(key); attributeLock.unlock(); return b; }