From 1d01d6d919ec55e59d5c9b20a978aa6b802bd45d Mon Sep 17 00:00:00 2001
From: Jeff Ames
Date: Wed, 1 Jul 2009 23:37:09 +0000
Subject: Formatting cleanup.
---
.../Scripting/Minimodule/InventoryItem.cs | 110 ++++++++++-----------
1 file changed, 55 insertions(+), 55 deletions(-)
(limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/InventoryItem.cs')
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/InventoryItem.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/InventoryItem.cs
index dc0b94a..b9c0065 100644
--- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/InventoryItem.cs
+++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/InventoryItem.cs
@@ -35,62 +35,62 @@ using OpenMetaverse;
namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
{
- public class InventoryItem : IInventoryItem
- {
- TaskInventoryItem m_privateItem;
- Scene m_rootSceene;
-
- public InventoryItem(Scene rootScene, TaskInventoryItem internalItem)
- {
- m_rootSceene = rootScene;
- m_privateItem = internalItem;
- }
+ public class InventoryItem : IInventoryItem
+ {
+ TaskInventoryItem m_privateItem;
+ Scene m_rootSceene;
+
+ public InventoryItem(Scene rootScene, TaskInventoryItem internalItem)
+ {
+ m_rootSceene = rootScene;
+ m_privateItem = internalItem;
+ }
- // Marked internal, to prevent scripts from accessing the internal type
- internal TaskInventoryItem ToTaskInventoryItem()
- {
- return m_privateItem;
- }
+ // Marked internal, to prevent scripts from accessing the internal type
+ internal TaskInventoryItem ToTaskInventoryItem()
+ {
+ return m_privateItem;
+ }
- ///
- /// This will attempt to convert from an IInventoryItem to an InventoryItem object
- ///
- ///
- /// In order for this to work the object which implements IInventoryItem must inherit from InventoryItem, otherwise
- /// an exception is thrown.
- ///
- ///
- /// The interface to upcast
- ///
- ///
- /// The object backing the interface implementation
- ///
- internal static InventoryItem FromInterface(IInventoryItem i)
- {
- if(typeof(InventoryItem).IsAssignableFrom(i.GetType()))
- {
- return (InventoryItem)i;
- }
- else
- {
- throw new ApplicationException("[MRM] There is no legal conversion from IInventoryItem to InventoryItem");
- }
- }
-
- public int Type { get { return m_privateItem.Type; } }
- public UUID AssetID { get { return m_privateItem.AssetID; } }
-
- public T RetreiveAsset() where T : OpenMetaverse.Asset, new()
- {
- AssetBase a = m_rootSceene.AssetService.Get(AssetID.ToString());
- T result = new T();
+ ///
+ /// This will attempt to convert from an IInventoryItem to an InventoryItem object
+ ///
+ ///
+ /// In order for this to work the object which implements IInventoryItem must inherit from InventoryItem, otherwise
+ /// an exception is thrown.
+ ///
+ ///
+ /// The interface to upcast
+ ///
+ ///
+ /// The object backing the interface implementation
+ ///
+ internal static InventoryItem FromInterface(IInventoryItem i)
+ {
+ if (typeof(InventoryItem).IsAssignableFrom(i.GetType()))
+ {
+ return (InventoryItem)i;
+ }
+ else
+ {
+ throw new ApplicationException("[MRM] There is no legal conversion from IInventoryItem to InventoryItem");
+ }
+ }
+
+ public int Type { get { return m_privateItem.Type; } }
+ public UUID AssetID { get { return m_privateItem.AssetID; } }
+
+ public T RetreiveAsset() where T : OpenMetaverse.Asset, new()
+ {
+ AssetBase a = m_rootSceene.AssetService.Get(AssetID.ToString());
+ T result = new T();
- if((sbyte)result.AssetType != a.Type)
- throw new ApplicationException("[MRM] The supplied asset class does not match the found asset");
-
- result.AssetData = a.Data;
- result.Decode();
- return result;
- }
- }
+ if ((sbyte)result.AssetType != a.Type)
+ throw new ApplicationException("[MRM] The supplied asset class does not match the found asset");
+
+ result.AssetData = a.Data;
+ result.Decode();
+ return result;
+ }
+ }
}
--
cgit v1.1