Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 9x 9x 1x 1x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 1x 1x | import {IRegistry} from "../../_iregistry";
import {WorkspaceEdit, TextDocumentEdit, CreateFile, RenameFile, DeleteFile} from "vscode-languageserver-types";
import {DataElement} from "..";
import {ObjectRenamer} from "./_object_renamer";
import {IObject} from "../_iobject";
import {RenamerHelper} from "./renamer_helper";
export class RenameDataElement implements ObjectRenamer {
private readonly reg: IRegistry;
public constructor(reg: IRegistry) {
this.reg = reg;
}
public buildEdits(obj: IObject, oldName: string, newName: string): WorkspaceEdit | undefined {
if (!(obj instanceof DataElement)) {
throw new Error("RenameDataElement, not a data element");
}
let changes: (TextDocumentEdit | CreateFile | RenameFile | DeleteFile)[] = [];
const helper = new RenamerHelper(this.reg);
changes = changes.concat(helper.buildXMLFileEdits(obj, "ROLLNAME", oldName, newName));
changes = changes.concat(helper.renameFiles(obj, oldName, newName));
changes = changes.concat(helper.renameDDICCodeReferences(obj, oldName, newName));
changes = changes.concat(helper.renameDDICTABLReferences(obj, oldName, newName));
changes = changes.concat(helper.renameDDICTTYPReferences(obj, oldName, newName));
changes = changes.concat(helper.renameDDICAUTHReferences(obj, oldName, newName));
return {
documentChanges: changes,
};
}
} |