nix icon indicating copy to clipboard operation
nix copied to clipboard

Copy data from one file / back-end to another

Open stoewer opened this issue 8 years ago • 0 comments

At the moment it is not easily possible to copy content from one file or back-end to another. One solution to this problem would be to add create methods that accept another instance of the entity to create:

DataArray da_new = block.createDataArray(da_old);

Another possibility is to overwrite data of an existing entity with data from another one:

DataArray da = ....;
DataArray da_other = ...;
da.apply(da_other)

It has to be specified to what extent those method also copy data of their respective child entities:

// does this copy also all Source, DataArray and other entities?
// What about attached Sections?
Block b_new = file.createBlock(b_old);

stoewer avatar Aug 10 '15 11:08 stoewer