return new SVNEvent(null, dir, name, SVNEventAction.DELETE, null, 0,
null, null, null, null, null, null);
}
public static SVNEvent createUpdateExternalEvent(SVNAdminAreaInfo info, String path) {
SVNEvent event = new SVNEvent(info, null, null,
SVNEventAction.UPDATE_EXTERNAL, SVNNodeKind.DIR, -1, null,
null, null, null, null, null);
event.setPath(path);
return event;
}