minor: Adjust method doc on IXInventoryData MoveItem() and MoveFolder() to make it clear we're moving to an existing folder.

integration
Justin Clark-Casey (justincc) 2012-11-09 01:18:11 +00:00
parent 75c880a6f3
commit 61b816ebba
1 changed files with 6 additions and 6 deletions

View File

@ -117,20 +117,20 @@ namespace OpenSim.Data
bool DeleteItems(string[] fields, string[] vals);
/// <summary>
/// Move an item to a new folder.
/// Move an item to another folder.
/// </summary>
/// <returns>/returns>
/// <param name='id'>UUID of the item</param>
/// <param name='newParent'>UUID of the new folder.</param>
bool MoveItem(string id, string newParent);
/// <param name='newParent'>UUID of the new parent folder.</param>
bool MoveItem(string id, string newParentFolderID);
/// <summary>
/// Move a folder to a new folder.
/// Move a folder to another folder.
/// </summary>
/// <returns>/returns>
/// <param name='id'>UUID of the item</param>
/// <param name='newParent'>UUID of the new folder.</param>
bool MoveFolder(string id, string newParent);
/// <param name='newParent'>UUID of the new parent folder.</param>
bool MoveFolder(string id, string newParentFolderID);
XInventoryItem[] GetActiveGestures(UUID principalID);
int GetAssetPermissions(UUID principalID, UUID assetID);