public boolean equals()

in shared/java/impl/Native.java [23:39]


    public boolean equals(Object other) {
        try {
            if (this == other)
                return true;
            if (null == other)
                return false;
            if (!getClass().isInstance(other))
                return false;
            Native nOther = (Native) other;
            if (_ptr == nOther._ptr)
                return true;
            return _nativeEquals(nOther);
        } finally {
            Reference.reachabilityFence(this);
            Reference.reachabilityFence(other);
        }
    }