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

/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DArchiveParser.java112 head(arc);
169 final public void head(Archive arc) throws ParseException { method in class:ArchiveParser
H A DArchive.java156 protected TrunkNode head; field in class:Archive
217 this.head = (TrunkNode) newNode(vernum, null);
218 this.head.setText(text);
219 this.head.setLog(desc);
294 * Add a head node with the given version number.
299 if (head != null)
301 throw new HeadAlreadySetException(head.getVersion());
303 head = new TrunkNode(vernum, null);
304 nodes.put(vernum, head);
329 if (head
[all...]

Completed in 26 milliseconds