Home | History | Annotate | Download | only in grapher

Lines Matching refs:id

34   private final NodeId id;
37 protected Node(NodeId id, Object source) {
38 this.id = id;
43 return id;
55 return Objects.equal(id, other.id)
60 return ignoreSourceInComparisons ? id.hashCode() : Objects.hashCode(id, source);
64 * Returns a copy of the node with a new ID.
66 * @param id new ID of the node
67 * @return copy of the node with a new ID
69 public abstract Node copy(NodeId id);