List of usage examples for org.jdom2 Element hashCode
@Override public final int hashCode()
Content
item. From source file:neon.editor.resources.RMap.java
License:Open Source License
public int createUID(Element e) { int hash = e.hashCode(); while (uids.contains(hash)) { hash++;/*from w w w .j a v a2 s . c o m*/ } uids.add(hash); return hash; }