Searched defs:afternode (Results 1 - 1 of 1) sorted by relevance

/glassfish-3.1.2/persistence/cmp/utility/src/main/java/com/sun/jdo/spi/persistence/utility/
H A DDoubleLinkedList.java278 * @param afternode the new node will be inserted after this node
281 public synchronized void insertIntoList(Linkable afternode, Linkable newnode) argument
283 if ((newnode instanceof Linkable) && (afternode instanceof Linkable))
285 if (this.tail == afternode) // If inserting at the tail,
291 Linkable nextnode = afternode.getNext();
293 newnode.setPrevious(afternode); // Point to previous node.
294 afternode.setNext(newnode); // Fixup backlink in afternode.

Completed in 38 milliseconds