exception NameClashResolveRequest in module com::sun::star::ucb::

(Global Index)

Syntax

exception NameClashResolveRequest : com::sun::star::task::ClassifiedInteractionRequest ;

Description

This request is used to indicate a name clash.

For example, when copying a file there migth be another file in the target folder that has the same file name as the source file.

If this exception is passed to an XInteractionHandler an XInteractionSupplyName and an XInteractionReplaceExistingData should be supplied with the XInteractionRequest . On return the XInteractionSupplyName , if selected, will contain a new name supposed to resolve the name clash. The XInteractionReplaceExistingData will be selected if the clashing resource shall be overwritten.

Field Summary

TargetFolderURL contains the URL of the folder that contains the clashing resource.

ClashingName contains the clashing name.

ProposedNewName contains a proposal for a new new, non-clashing name.

Field Details



TargetFolderURL

Syntax

string TargetFolderURL;

Description

contains the URL of the folder that contains the clashing resource.


ClashingName

Syntax

string ClashingName;

Description

contains the clashing name.


ProposedNewName

Syntax

string ProposedNewName;

Description

contains a proposal for a new new, non-clashing name.

This field may be left empty if the implementation is not able to suggest a new name.

Top of Page