package org.apache.commons.jrcs.rcs; import java.util.List; interface DeltaTextLine { @SuppressWarnings("rawtypes") public void patch(Node root, Node prev, List lines); @SuppressWarnings("rawtypes") public void patchAnnotate(Node root, Node prev, List lines); }