protected NameableArtefactImpl()

in sdmx30-infomodel/src/main/java/com/epam/jsdmx/infomodel/sdmx30/NameableArtefactImpl.java [20:28]


    protected NameableArtefactImpl(NameableArtefact from) {
        super(Objects.requireNonNull(from));
        if (from.getName() != null) {
            this.name = new InternationalString(from.getName());
        }
        if (from.getDescription() != null) {
            this.description = new InternationalString(from.getDescription());
        }
    }