コード例 #1
0
ファイル: Graphs.java プロジェクト: Dave1704/gs-core
    public boolean hasAttribute(String key, Class<?> clazz) {
      boolean b;

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

      return b;
    }
コード例 #2
0
ファイル: Graphs.java プロジェクト: Dave1704/gs-core
    public boolean hasAttribute(String key) {
      boolean b;

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

      return b;
    }