diff --git a/ANX.Framework/Content/ContentLoadException.cs b/ANX.Framework/Content/ContentLoadException.cs index 594cf046..9702822a 100644 --- a/ANX.Framework/Content/ContentLoadException.cs +++ b/ANX.Framework/Content/ContentLoadException.cs @@ -1,6 +1,7 @@ #region Using Statements using System; using System.Runtime.Serialization; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -13,6 +14,7 @@ namespace ANX.Framework.Content #if !WINDOWSMETRO //TODO: search replacement for Win8 [SerializableAttribute] #endif + [Developer("GinieDP")] public class ContentLoadException : Exception { /// diff --git a/ANX.Framework/Content/ContentManager.cs b/ANX.Framework/Content/ContentManager.cs index bfa9ed37..467a1f60 100644 --- a/ANX.Framework/Content/ContentManager.cs +++ b/ANX.Framework/Content/ContentManager.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.IO; using ANX.Framework.NonXNA.PlatformSystem; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -9,6 +10,7 @@ using ANX.Framework.NonXNA.PlatformSystem; namespace ANX.Framework.Content { + [Developer("GinieDP")] public class ContentManager : IDisposable { #region Constants diff --git a/ANX.Framework/Content/ContentReader.cs b/ANX.Framework/Content/ContentReader.cs index c56f8628..182e9c4c 100644 --- a/ANX.Framework/Content/ContentReader.cs +++ b/ANX.Framework/Content/ContentReader.cs @@ -5,6 +5,7 @@ using System.IO; using System.Reflection; using ANX.Framework.Graphics; using ANX.Framework.NonXNA.Reflection; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -14,6 +15,7 @@ using ANX.Framework.NonXNA.Reflection; namespace ANX.Framework.Content { + [Developer("GinieDP")] public sealed class ContentReader : BinaryReader { private GraphicsProfile graphicsProfile; diff --git a/ANX.Framework/Content/ContentSerializerAttribute.cs b/ANX.Framework/Content/ContentSerializerAttribute.cs index 9a38552e..ea196999 100644 --- a/ANX.Framework/Content/ContentSerializerAttribute.cs +++ b/ANX.Framework/Content/ContentSerializerAttribute.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,7 @@ using System; namespace ANX.Framework.Content { [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)] + [Developer("GinieDP")] public sealed class ContentSerializerAttribute : Attribute { public string ElementName { get; set; } diff --git a/ANX.Framework/Content/ContentSerializerIgnoreAttribute.cs b/ANX.Framework/Content/ContentSerializerIgnoreAttribute.cs index 21af8c63..84925c76 100644 --- a/ANX.Framework/Content/ContentSerializerIgnoreAttribute.cs +++ b/ANX.Framework/Content/ContentSerializerIgnoreAttribute.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,7 @@ using System; namespace ANX.Framework.Content { [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)] + [Developer("GinieDP")] public sealed class ContentSerializerIgnoreAttribute : Attribute { } diff --git a/ANX.Framework/Content/ContentSerializerItemNameAttribute.cs b/ANX.Framework/Content/ContentSerializerItemNameAttribute.cs index d98bc731..d062b161 100644 --- a/ANX.Framework/Content/ContentSerializerItemNameAttribute.cs +++ b/ANX.Framework/Content/ContentSerializerItemNameAttribute.cs @@ -1,4 +1,5 @@ using System; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -7,6 +8,7 @@ namespace ANX.Framework.Content { [AttributeUsage(AttributeTargets.Class)] + [Developer("GinieDP")] public sealed class ContentSerializerCollectionItemNameAttribute : Attribute { private string collectionItemName; diff --git a/ANX.Framework/Content/ContentSerializerRuntimeTypeAttribute.cs b/ANX.Framework/Content/ContentSerializerRuntimeTypeAttribute.cs index 0256a2d2..791cd0f2 100644 --- a/ANX.Framework/Content/ContentSerializerRuntimeTypeAttribute.cs +++ b/ANX.Framework/Content/ContentSerializerRuntimeTypeAttribute.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,7 @@ using System; namespace ANX.Framework.Content { [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] + [Developer("GinieDP")] public sealed class ContentSerializerRuntimeTypeAttribute : Attribute { public string RuntimeType diff --git a/ANX.Framework/Content/ContentSerializerTypeVersionAttribute.cs b/ANX.Framework/Content/ContentSerializerTypeVersionAttribute.cs index 1aed92c2..67b6751f 100644 --- a/ANX.Framework/Content/ContentSerializerTypeVersionAttribute.cs +++ b/ANX.Framework/Content/ContentSerializerTypeVersionAttribute.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,7 @@ using System; namespace ANX.Framework.Content { [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)] + [Developer("GinieDP")] public sealed class ContentSerializerTypeVersionAttribute : Attribute { public int TypeVersion diff --git a/ANX.Framework/Content/ContentTypeReader.cs b/ANX.Framework/Content/ContentTypeReader.cs index 8fc3c91e..fce42e68 100644 --- a/ANX.Framework/Content/ContentTypeReader.cs +++ b/ANX.Framework/Content/ContentTypeReader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] public abstract class ContentTypeReader { /// diff --git a/ANX.Framework/Content/ContentTypeReaderManager.cs b/ANX.Framework/Content/ContentTypeReaderManager.cs index 1910ffda..d7a19293 100644 --- a/ANX.Framework/Content/ContentTypeReaderManager.cs +++ b/ANX.Framework/Content/ContentTypeReaderManager.cs @@ -1,6 +1,7 @@ #region Using Statements using System; using System.Collections.Generic; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -11,6 +12,7 @@ using System.Collections.Generic; namespace ANX.Framework.Content { + [Developer("GinieDP")] public sealed class ContentTypeReaderManager { private ContentReader contentReader; diff --git a/ANX.Framework/Content/Decompressor.cs b/ANX.Framework/Content/Decompressor.cs index 394b3242..27080af2 100644 --- a/ANX.Framework/Content/Decompressor.cs +++ b/ANX.Framework/Content/Decompressor.cs @@ -1,5 +1,6 @@ #region Using Statements using System.IO; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements // This file is part of the ANX.Framework created by the @@ -38,6 +39,7 @@ SOFTWARE. namespace ANX.Framework.Content { + [Developer("GinieDP")] internal static class Decompressor { public static Stream DecompressStream(BinaryReader reader, Stream input, int num) diff --git a/ANX.Framework/Content/GraphicTypeReaders/AlphaTestEffectReader.cs b/ANX.Framework/Content/GraphicTypeReaders/AlphaTestEffectReader.cs index 8b6e5d4a..bd9d785e 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/AlphaTestEffectReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/AlphaTestEffectReader.cs @@ -1,4 +1,5 @@ using ANX.Framework.Graphics; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -6,7 +7,8 @@ namespace ANX.Framework.Content { - public class AlphaTestEffectReader : ContentTypeReader + [Developer("GinieDP")] + public class AlphaTestEffectReader : ContentTypeReader { protected internal override AlphaTestEffect Read(ContentReader input, AlphaTestEffect existingInstance) { diff --git a/ANX.Framework/Content/GraphicTypeReaders/BasicEffectReader.cs b/ANX.Framework/Content/GraphicTypeReaders/BasicEffectReader.cs index c7328d80..90461f05 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/BasicEffectReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/BasicEffectReader.cs @@ -1,5 +1,6 @@ #region Using Statements using ANX.Framework.Graphics; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using ANX.Framework.Graphics; namespace ANX.Framework.Content { + [Developer("GinieDP")] public class BasicEffectReader : ContentTypeReader { protected internal override BasicEffect Read(ContentReader input, BasicEffect existingInstance) diff --git a/ANX.Framework/Content/GraphicTypeReaders/DualTextureEffectReader.cs b/ANX.Framework/Content/GraphicTypeReaders/DualTextureEffectReader.cs index d667a984..c2c9c68b 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/DualTextureEffectReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/DualTextureEffectReader.cs @@ -1,5 +1,6 @@ #region Using Statements using ANX.Framework.Graphics; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using ANX.Framework.Graphics; namespace ANX.Framework.Content { + [Developer("GinieDP")] public class DualTextureEffectReader : ContentTypeReader { protected internal override DualTextureEffect Read(ContentReader input, DualTextureEffect existingInstance) diff --git a/ANX.Framework/Content/GraphicTypeReaders/EffectMaterialReader.cs b/ANX.Framework/Content/GraphicTypeReaders/EffectMaterialReader.cs index d6801372..c1ff356d 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/EffectMaterialReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/EffectMaterialReader.cs @@ -2,6 +2,7 @@ using System; using System.Collections.Generic; using ANX.Framework.Graphics; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -11,6 +12,7 @@ using ANX.Framework.Graphics; namespace ANX.Framework.Content { + [Developer("GinieDP")] public class EffectMaterialReader : ContentTypeReader { protected internal override EffectMaterial Read(ContentReader input, EffectMaterial existingInstance) diff --git a/ANX.Framework/Content/GraphicTypeReaders/EffectReader.cs b/ANX.Framework/Content/GraphicTypeReaders/EffectReader.cs index 2709bc7f..cd65d6f2 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/EffectReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/EffectReader.cs @@ -4,6 +4,7 @@ using System.IO; using ANX.Framework.ContentPipeline; using ANX.Framework.Graphics; using ANX.Framework.NonXNA; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -13,6 +14,7 @@ using ANX.Framework.NonXNA; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class EffectReader : ContentTypeReader { protected internal override Effect Read(ContentReader input, Effect existingInstance) diff --git a/ANX.Framework/Content/GraphicTypeReaders/EnvironmentMapEffectReader.cs b/ANX.Framework/Content/GraphicTypeReaders/EnvironmentMapEffectReader.cs index 6fcc512e..d8a1d398 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/EnvironmentMapEffectReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/EnvironmentMapEffectReader.cs @@ -1,5 +1,6 @@ #region Using Statements using ANX.Framework.Graphics; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using ANX.Framework.Graphics; namespace ANX.Framework.Content { + [Developer("GinieDP")] public class EnvironmentMapEffectReader : ContentTypeReader { protected internal override EnvironmentMapEffect Read(ContentReader input, EnvironmentMapEffect existingInstance) diff --git a/ANX.Framework/Content/GraphicTypeReaders/IndexBufferReader.cs b/ANX.Framework/Content/GraphicTypeReaders/IndexBufferReader.cs index 9631d4d9..6d2c4c35 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/IndexBufferReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/IndexBufferReader.cs @@ -1,5 +1,6 @@ #region Using Statements using ANX.Framework.Graphics; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,7 @@ using ANX.Framework.Graphics; namespace ANX.Framework.Content { + [Developer("GinieDP")] public class IndexBufferReader : ContentTypeReader { protected internal override IndexBuffer Read(ContentReader input, IndexBuffer existingInstance) diff --git a/ANX.Framework/Content/GraphicTypeReaders/ModelReader.cs b/ANX.Framework/Content/GraphicTypeReaders/ModelReader.cs index 35a4c8fd..85625d79 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/ModelReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/ModelReader.cs @@ -2,6 +2,7 @@ using System; using ANX.Framework.Graphics; using ANX.Framework.NonXNA; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -11,6 +12,7 @@ using ANX.Framework.NonXNA; namespace ANX.Framework.Content { + [Developer("GinieDP")] public class ModelReader : ContentTypeReader { protected internal override Model Read(ContentReader input, Model existingInstance) diff --git a/ANX.Framework/Content/GraphicTypeReaders/SkinnedEffectReader.cs b/ANX.Framework/Content/GraphicTypeReaders/SkinnedEffectReader.cs index 46be7567..7207544c 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/SkinnedEffectReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/SkinnedEffectReader.cs @@ -1,5 +1,6 @@ #region Using Statements using ANX.Framework.Graphics; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using ANX.Framework.Graphics; namespace ANX.Framework.Content { + [Developer("GinieDP")] public class SkinnedEffectReader : ContentTypeReader { protected internal override SkinnedEffect Read(ContentReader input, SkinnedEffect existingInstance) diff --git a/ANX.Framework/Content/GraphicTypeReaders/SpriteFontReader.cs b/ANX.Framework/Content/GraphicTypeReaders/SpriteFontReader.cs index a614277f..af040d93 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/SpriteFontReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/SpriteFontReader.cs @@ -2,6 +2,7 @@ using System; using System.Collections.Generic; using ANX.Framework.Graphics; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -11,6 +12,7 @@ using ANX.Framework.Graphics; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class SpriteFontReader : ContentTypeReader { protected internal override SpriteFont Read(ContentReader input, SpriteFont existingInstance) diff --git a/ANX.Framework/Content/GraphicTypeReaders/Texture2DReader.cs b/ANX.Framework/Content/GraphicTypeReaders/Texture2DReader.cs index 425aea10..f8c3744b 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/Texture2DReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/Texture2DReader.cs @@ -1,6 +1,7 @@ using System; using ANX.Framework.Graphics; using ANX.Framework.NonXNA; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -8,6 +9,7 @@ using ANX.Framework.NonXNA; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class Texture2DReader : ContentTypeReader { protected internal override Texture2D Read(ContentReader input, Texture2D existingInstance) diff --git a/ANX.Framework/Content/GraphicTypeReaders/Texture3DReader.cs b/ANX.Framework/Content/GraphicTypeReaders/Texture3DReader.cs index 7f61bc7d..7cb66ef8 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/Texture3DReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/Texture3DReader.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; using ANX.Framework.Graphics; using ANX.Framework.NonXNA; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -12,6 +13,7 @@ using ANX.Framework.NonXNA; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class Texture3DReader : ContentTypeReader { protected internal override Texture3D Read(ContentReader input, Texture3D existingInstance) diff --git a/ANX.Framework/Content/GraphicTypeReaders/TextureCubeReader.cs b/ANX.Framework/Content/GraphicTypeReaders/TextureCubeReader.cs index 0a37355a..13a0bbe6 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/TextureCubeReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/TextureCubeReader.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; using ANX.Framework.Graphics; using ANX.Framework.NonXNA; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -12,6 +13,7 @@ using ANX.Framework.NonXNA; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class TextureCubeReader : ContentTypeReader { protected internal override TextureCube Read(ContentReader input, TextureCube existingInstance) diff --git a/ANX.Framework/Content/GraphicTypeReaders/TextureReader.cs b/ANX.Framework/Content/GraphicTypeReaders/TextureReader.cs index 1a13148f..4e036293 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/TextureReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/TextureReader.cs @@ -1,5 +1,6 @@ #region Using Statements using ANX.Framework.Graphics; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using ANX.Framework.Graphics; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class TextureReader : ContentTypeReader { protected internal override Texture Read(ContentReader input, Texture existingInstance) diff --git a/ANX.Framework/Content/GraphicTypeReaders/VertexBufferReader.cs b/ANX.Framework/Content/GraphicTypeReaders/VertexBufferReader.cs index 981a2522..3458b4ef 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/VertexBufferReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/VertexBufferReader.cs @@ -1,5 +1,6 @@ #region Using Statements using ANX.Framework.Graphics; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,7 @@ using ANX.Framework.Graphics; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class VertexBufferReader : ContentTypeReader { protected internal override VertexBuffer Read(ContentReader input, VertexBuffer existingInstance) diff --git a/ANX.Framework/Content/GraphicTypeReaders/VertexDeclarationReader.cs b/ANX.Framework/Content/GraphicTypeReaders/VertexDeclarationReader.cs index 60aa9fc1..e8c3aee6 100644 --- a/ANX.Framework/Content/GraphicTypeReaders/VertexDeclarationReader.cs +++ b/ANX.Framework/Content/GraphicTypeReaders/VertexDeclarationReader.cs @@ -1,5 +1,6 @@ #region Using Statements using ANX.Framework.Graphics; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,7 @@ using ANX.Framework.Graphics; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class VertexDeclarationReader : ContentTypeReader { protected internal override VertexDeclaration Read(ContentReader input, VertexDeclaration existingInstance) diff --git a/ANX.Framework/Content/LzxDecoder.cs b/ANX.Framework/Content/LzxDecoder.cs index 9e8d9b2e..94f9d653 100644 --- a/ANX.Framework/Content/LzxDecoder.cs +++ b/ANX.Framework/Content/LzxDecoder.cs @@ -46,7 +46,9 @@ using System; namespace ANX.Framework.Content { using System.IO; + using ANX.Framework.NonXNA.Development; + [Developer("GinieDP")] internal class LzxDecoder { public static uint[] position_base = null; diff --git a/ANX.Framework/Content/MathTypeReaders/BoundingBoxReader.cs b/ANX.Framework/Content/MathTypeReaders/BoundingBoxReader.cs index a93054b1..8e8a0147 100644 --- a/ANX.Framework/Content/MathTypeReaders/BoundingBoxReader.cs +++ b/ANX.Framework/Content/MathTypeReaders/BoundingBoxReader.cs @@ -7,8 +7,10 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class BoundingBoxReader : ContentTypeReader { protected internal override BoundingBox Read(ContentReader input, BoundingBox existingInstance) diff --git a/ANX.Framework/Content/MathTypeReaders/BoundingFrustumReader.cs b/ANX.Framework/Content/MathTypeReaders/BoundingFrustumReader.cs index 1059af42..62b12d0a 100644 --- a/ANX.Framework/Content/MathTypeReaders/BoundingFrustumReader.cs +++ b/ANX.Framework/Content/MathTypeReaders/BoundingFrustumReader.cs @@ -7,8 +7,10 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class BoundingFrustumReader : ContentTypeReader { protected internal override BoundingFrustum Read(ContentReader input, BoundingFrustum existingInstance) diff --git a/ANX.Framework/Content/MathTypeReaders/BoundingSphereReader.cs b/ANX.Framework/Content/MathTypeReaders/BoundingSphereReader.cs index b614be7c..ddf377a7 100644 --- a/ANX.Framework/Content/MathTypeReaders/BoundingSphereReader.cs +++ b/ANX.Framework/Content/MathTypeReaders/BoundingSphereReader.cs @@ -7,8 +7,10 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class BoundingSphereReader : ContentTypeReader { protected internal override BoundingSphere Read(ContentReader input, BoundingSphere existingInstance) diff --git a/ANX.Framework/Content/MathTypeReaders/ColorReader.cs b/ANX.Framework/Content/MathTypeReaders/ColorReader.cs index a9d747af..9d8813f8 100644 --- a/ANX.Framework/Content/MathTypeReaders/ColorReader.cs +++ b/ANX.Framework/Content/MathTypeReaders/ColorReader.cs @@ -7,8 +7,10 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class ColorReader : ContentTypeReader { protected internal override Color Read(ContentReader input, Color existingInstance) diff --git a/ANX.Framework/Content/MathTypeReaders/MatrixReader.cs b/ANX.Framework/Content/MathTypeReaders/MatrixReader.cs index 884181b6..cc74785d 100644 --- a/ANX.Framework/Content/MathTypeReaders/MatrixReader.cs +++ b/ANX.Framework/Content/MathTypeReaders/MatrixReader.cs @@ -7,8 +7,10 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class MatrixReader : ContentTypeReader { protected internal override Matrix Read(ContentReader input, Matrix existingInstance) diff --git a/ANX.Framework/Content/MathTypeReaders/PlaneReader.cs b/ANX.Framework/Content/MathTypeReaders/PlaneReader.cs index 51f21b07..9fc10ad0 100644 --- a/ANX.Framework/Content/MathTypeReaders/PlaneReader.cs +++ b/ANX.Framework/Content/MathTypeReaders/PlaneReader.cs @@ -7,8 +7,10 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class PlaneReader : ContentTypeReader { protected internal override Plane Read(ContentReader input, Plane existingInstance) diff --git a/ANX.Framework/Content/MathTypeReaders/PointReader.cs b/ANX.Framework/Content/MathTypeReaders/PointReader.cs index a613de1e..ce1ae8b6 100644 --- a/ANX.Framework/Content/MathTypeReaders/PointReader.cs +++ b/ANX.Framework/Content/MathTypeReaders/PointReader.cs @@ -7,8 +7,10 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class PointReader : ContentTypeReader { protected internal override Point Read(ContentReader input, Point existingInstance) diff --git a/ANX.Framework/Content/MathTypeReaders/QuaternionReader.cs b/ANX.Framework/Content/MathTypeReaders/QuaternionReader.cs index 920a752b..b05b9353 100644 --- a/ANX.Framework/Content/MathTypeReaders/QuaternionReader.cs +++ b/ANX.Framework/Content/MathTypeReaders/QuaternionReader.cs @@ -7,8 +7,10 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class QuaternionReader : ContentTypeReader { protected internal override Quaternion Read(ContentReader input, Quaternion existingInstance) diff --git a/ANX.Framework/Content/MathTypeReaders/RayReader.cs b/ANX.Framework/Content/MathTypeReaders/RayReader.cs index b73d00e3..8c3155ea 100644 --- a/ANX.Framework/Content/MathTypeReaders/RayReader.cs +++ b/ANX.Framework/Content/MathTypeReaders/RayReader.cs @@ -7,8 +7,10 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Content { + [Developer("GinieDP")] public class RayReader : ContentTypeReader { protected internal override Ray Read(ContentReader input, Ray existingInstance) diff --git a/ANX.Framework/Content/MathTypeReaders/RectangleReader.cs b/ANX.Framework/Content/MathTypeReaders/RectangleReader.cs index fc643da3..9e18bea0 100644 --- a/ANX.Framework/Content/MathTypeReaders/RectangleReader.cs +++ b/ANX.Framework/Content/MathTypeReaders/RectangleReader.cs @@ -7,8 +7,10 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class RectangleReader : ContentTypeReader { protected internal override Rectangle Read(ContentReader input, Rectangle existingInstance) diff --git a/ANX.Framework/Content/MathTypeReaders/Vector2Reader.cs b/ANX.Framework/Content/MathTypeReaders/Vector2Reader.cs index 8a4dac98..d7b700fa 100644 --- a/ANX.Framework/Content/MathTypeReaders/Vector2Reader.cs +++ b/ANX.Framework/Content/MathTypeReaders/Vector2Reader.cs @@ -7,8 +7,10 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class Vector2Reader : ContentTypeReader { protected internal override Vector2 Read(ContentReader input, Vector2 existingInstance) diff --git a/ANX.Framework/Content/MathTypeReaders/Vector3Reader.cs b/ANX.Framework/Content/MathTypeReaders/Vector3Reader.cs index a26901a8..d9252d2b 100644 --- a/ANX.Framework/Content/MathTypeReaders/Vector3Reader.cs +++ b/ANX.Framework/Content/MathTypeReaders/Vector3Reader.cs @@ -7,8 +7,10 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class Vector3Reader : ContentTypeReader { protected internal override Vector3 Read(ContentReader input, Vector3 existingInstance) diff --git a/ANX.Framework/Content/MathTypeReaders/Vector4Reader.cs b/ANX.Framework/Content/MathTypeReaders/Vector4Reader.cs index be8f7ac6..e142ccbe 100644 --- a/ANX.Framework/Content/MathTypeReaders/Vector4Reader.cs +++ b/ANX.Framework/Content/MathTypeReaders/Vector4Reader.cs @@ -7,8 +7,10 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class Vector4Reader : ContentTypeReader { protected internal override Vector4 Read(ContentReader input, Vector4 existingInstance) diff --git a/ANX.Framework/Content/PrimitiveTypeReaders/BooleanReader.cs b/ANX.Framework/Content/PrimitiveTypeReaders/BooleanReader.cs index 831008d1..6c73d4de 100644 --- a/ANX.Framework/Content/PrimitiveTypeReaders/BooleanReader.cs +++ b/ANX.Framework/Content/PrimitiveTypeReaders/BooleanReader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class BooleanReader : ContentTypeReader { protected internal override Boolean Read(ContentReader input, Boolean existingInstance) diff --git a/ANX.Framework/Content/PrimitiveTypeReaders/ByteReader.cs b/ANX.Framework/Content/PrimitiveTypeReaders/ByteReader.cs index 9ebaaf93..3d22386d 100644 --- a/ANX.Framework/Content/PrimitiveTypeReaders/ByteReader.cs +++ b/ANX.Framework/Content/PrimitiveTypeReaders/ByteReader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class ByteReader : ContentTypeReader { protected internal override byte Read(ContentReader input, Byte existingInstance) @@ -17,6 +19,7 @@ namespace ANX.Framework.Content } } + [Developer("GinieDP")] internal class SByteReader : ContentTypeReader { protected internal override sbyte Read(ContentReader input, SByte existingInstance) diff --git a/ANX.Framework/Content/PrimitiveTypeReaders/CharReader.cs b/ANX.Framework/Content/PrimitiveTypeReaders/CharReader.cs index f05ac20d..701105ff 100644 --- a/ANX.Framework/Content/PrimitiveTypeReaders/CharReader.cs +++ b/ANX.Framework/Content/PrimitiveTypeReaders/CharReader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class CharReader : ContentTypeReader { protected internal override Char Read(ContentReader input, Char existingInstance) diff --git a/ANX.Framework/Content/PrimitiveTypeReaders/DoubleReader.cs b/ANX.Framework/Content/PrimitiveTypeReaders/DoubleReader.cs index 88a86686..f0d26f77 100644 --- a/ANX.Framework/Content/PrimitiveTypeReaders/DoubleReader.cs +++ b/ANX.Framework/Content/PrimitiveTypeReaders/DoubleReader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class DoubleReader : ContentTypeReader { protected internal override Double Read(ContentReader input, Double existingInstance) diff --git a/ANX.Framework/Content/PrimitiveTypeReaders/Int16Reader.cs b/ANX.Framework/Content/PrimitiveTypeReaders/Int16Reader.cs index e2cc1af7..88d9c86d 100644 --- a/ANX.Framework/Content/PrimitiveTypeReaders/Int16Reader.cs +++ b/ANX.Framework/Content/PrimitiveTypeReaders/Int16Reader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class Int16Reader : ContentTypeReader { protected internal override Int16 Read(ContentReader input, Int16 existingInstance) @@ -17,6 +19,7 @@ namespace ANX.Framework.Content } } + [Developer("GinieDP")] internal class UInt16Reader : ContentTypeReader { protected internal override UInt16 Read(ContentReader input, UInt16 existingInstance) diff --git a/ANX.Framework/Content/PrimitiveTypeReaders/Int32Reader.cs b/ANX.Framework/Content/PrimitiveTypeReaders/Int32Reader.cs index 9aed06d0..91dce10c 100644 --- a/ANX.Framework/Content/PrimitiveTypeReaders/Int32Reader.cs +++ b/ANX.Framework/Content/PrimitiveTypeReaders/Int32Reader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class Int32Reader : ContentTypeReader { protected internal override Int32 Read(ContentReader input, Int32 existingInstance) @@ -17,6 +19,7 @@ namespace ANX.Framework.Content } } + [Developer("GinieDP")] internal class UInt32Reader : ContentTypeReader { protected internal override UInt32 Read(ContentReader input, UInt32 existingInstance) diff --git a/ANX.Framework/Content/PrimitiveTypeReaders/Int64Reader.cs b/ANX.Framework/Content/PrimitiveTypeReaders/Int64Reader.cs index b334117a..28d79308 100644 --- a/ANX.Framework/Content/PrimitiveTypeReaders/Int64Reader.cs +++ b/ANX.Framework/Content/PrimitiveTypeReaders/Int64Reader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class Int64Reader : ContentTypeReader { protected internal override Int64 Read(ContentReader input, Int64 existingInstance) @@ -17,6 +19,7 @@ namespace ANX.Framework.Content } } + [Developer("GinieDP")] internal class UInt64Reader : ContentTypeReader { protected internal override UInt64 Read(ContentReader input, UInt64 existingInstance) diff --git a/ANX.Framework/Content/PrimitiveTypeReaders/ObjectReader.cs b/ANX.Framework/Content/PrimitiveTypeReaders/ObjectReader.cs index 2e3c6250..9d2b6fbe 100644 --- a/ANX.Framework/Content/PrimitiveTypeReaders/ObjectReader.cs +++ b/ANX.Framework/Content/PrimitiveTypeReaders/ObjectReader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class ObjectReader : ContentTypeReader { public ObjectReader() diff --git a/ANX.Framework/Content/PrimitiveTypeReaders/SingleReader.cs b/ANX.Framework/Content/PrimitiveTypeReaders/SingleReader.cs index 7adbe424..b0144ff1 100644 --- a/ANX.Framework/Content/PrimitiveTypeReaders/SingleReader.cs +++ b/ANX.Framework/Content/PrimitiveTypeReaders/SingleReader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class SingleReader : ContentTypeReader { protected internal override Single Read(ContentReader input, Single existingInstance) diff --git a/ANX.Framework/Content/PrimitiveTypeReaders/StringReader.cs b/ANX.Framework/Content/PrimitiveTypeReaders/StringReader.cs index 5c12ac7d..34f0c193 100644 --- a/ANX.Framework/Content/PrimitiveTypeReaders/StringReader.cs +++ b/ANX.Framework/Content/PrimitiveTypeReaders/StringReader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class StringReader : ContentTypeReader { protected internal override String Read(ContentReader input, String existingInstance) diff --git a/ANX.Framework/Content/ReflectiveReader.cs b/ANX.Framework/Content/ReflectiveReader.cs index 5c8327f5..576c70b6 100644 --- a/ANX.Framework/Content/ReflectiveReader.cs +++ b/ANX.Framework/Content/ReflectiveReader.cs @@ -1,6 +1,7 @@ #region Using Statements using System; using System.Reflection; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements // This file is part of the ANX.Framework created by the @@ -11,6 +12,7 @@ namespace ANX.Framework.Content { #if !WINDOWSMETRO + [Developer("GinieDP")] public class ReflectiveReader : ContentTypeReader { private int typeVersion; diff --git a/ANX.Framework/Content/ResourceContentManager.cs b/ANX.Framework/Content/ResourceContentManager.cs index 7dae5cbd..ea545b81 100644 --- a/ANX.Framework/Content/ResourceContentManager.cs +++ b/ANX.Framework/Content/ResourceContentManager.cs @@ -1,6 +1,7 @@ using System; using System.IO; using System.Resources; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -8,6 +9,7 @@ using System.Resources; namespace ANX.Framework.Content { + [Developer("GinieDP")] public class ResourceContentManager : ContentManager { private ResourceManager resource; diff --git a/ANX.Framework/Content/SystemTypeReaders/ArrayReader.cs b/ANX.Framework/Content/SystemTypeReaders/ArrayReader.cs index 27c9dba0..61c00ceb 100644 --- a/ANX.Framework/Content/SystemTypeReaders/ArrayReader.cs +++ b/ANX.Framework/Content/SystemTypeReaders/ArrayReader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class ArrayReader : ContentTypeReader { private ContentTypeReader baseTypeReader; diff --git a/ANX.Framework/Content/SystemTypeReaders/DateTimeReader.cs b/ANX.Framework/Content/SystemTypeReaders/DateTimeReader.cs index ab13f49a..c231123c 100644 --- a/ANX.Framework/Content/SystemTypeReaders/DateTimeReader.cs +++ b/ANX.Framework/Content/SystemTypeReaders/DateTimeReader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class DateTimeReader : ContentTypeReader { protected internal override DateTime Read(ContentReader input, DateTime existingInstance) diff --git a/ANX.Framework/Content/SystemTypeReaders/DecimalReader.cs b/ANX.Framework/Content/SystemTypeReaders/DecimalReader.cs index 5ed3eec2..293ba90c 100644 --- a/ANX.Framework/Content/SystemTypeReaders/DecimalReader.cs +++ b/ANX.Framework/Content/SystemTypeReaders/DecimalReader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class DecimalReader : ContentTypeReader { protected internal override Decimal Read(ContentReader input, Decimal existingInstance) diff --git a/ANX.Framework/Content/SystemTypeReaders/DictionaryReader.cs b/ANX.Framework/Content/SystemTypeReaders/DictionaryReader.cs index d12273ed..fee0d20e 100644 --- a/ANX.Framework/Content/SystemTypeReaders/DictionaryReader.cs +++ b/ANX.Framework/Content/SystemTypeReaders/DictionaryReader.cs @@ -1,6 +1,7 @@ #region Using Statements using System; using System.Collections.Generic; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,7 @@ using System.Collections.Generic; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class DictionaryReader : ContentTypeReader> { private ContentTypeReader keyTypeReader; diff --git a/ANX.Framework/Content/SystemTypeReaders/EnumReader.cs b/ANX.Framework/Content/SystemTypeReaders/EnumReader.cs index 96a947ae..7620fe21 100644 --- a/ANX.Framework/Content/SystemTypeReaders/EnumReader.cs +++ b/ANX.Framework/Content/SystemTypeReaders/EnumReader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class EnumReader : ContentTypeReader { private ContentTypeReader baseTypeReader; diff --git a/ANX.Framework/Content/SystemTypeReaders/ExternalReferenceReader.cs b/ANX.Framework/Content/SystemTypeReaders/ExternalReferenceReader.cs index 7b0fbf48..a2966227 100644 --- a/ANX.Framework/Content/SystemTypeReaders/ExternalReferenceReader.cs +++ b/ANX.Framework/Content/SystemTypeReaders/ExternalReferenceReader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class ExternalReferenceReader : ContentTypeReader { public ExternalReferenceReader() diff --git a/ANX.Framework/Content/SystemTypeReaders/ListReader.cs b/ANX.Framework/Content/SystemTypeReaders/ListReader.cs index 2c5ecb01..87943843 100644 --- a/ANX.Framework/Content/SystemTypeReaders/ListReader.cs +++ b/ANX.Framework/Content/SystemTypeReaders/ListReader.cs @@ -1,6 +1,7 @@ #region Using Statements using System; using System.Collections.Generic; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,7 @@ using System.Collections.Generic; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class ListReader : ContentTypeReader> { private ContentTypeReader baseTypeReader; diff --git a/ANX.Framework/Content/SystemTypeReaders/NullableReader.cs b/ANX.Framework/Content/SystemTypeReaders/NullableReader.cs index 175aaf6f..1d214981 100644 --- a/ANX.Framework/Content/SystemTypeReaders/NullableReader.cs +++ b/ANX.Framework/Content/SystemTypeReaders/NullableReader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class NullableReader : ContentTypeReader where T : struct { private ContentTypeReader baseTypeReader; diff --git a/ANX.Framework/Content/SystemTypeReaders/TimeSpanReader.cs b/ANX.Framework/Content/SystemTypeReaders/TimeSpanReader.cs index a706d502..e921f809 100644 --- a/ANX.Framework/Content/SystemTypeReaders/TimeSpanReader.cs +++ b/ANX.Framework/Content/SystemTypeReaders/TimeSpanReader.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,7 @@ using System; namespace ANX.Framework.Content { + [Developer("GinieDP")] internal class TimeSpanReader : ContentTypeReader { protected internal override TimeSpan Read(ContentReader input, TimeSpan existingInstance) diff --git a/ANX.Framework/CurveContinuity.cs b/ANX.Framework/CurveContinuity.cs index ace9346e..f9bacabd 100644 --- a/ANX.Framework/CurveContinuity.cs +++ b/ANX.Framework/CurveContinuity.cs @@ -7,6 +7,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum CurveContinuity { diff --git a/ANX.Framework/CurveLoopType.cs b/ANX.Framework/CurveLoopType.cs index 9b229f69..d26e5ceb 100644 --- a/ANX.Framework/CurveLoopType.cs +++ b/ANX.Framework/CurveLoopType.cs @@ -7,6 +7,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum CurveLoopType { diff --git a/ANX.Framework/CurveTangent.cs b/ANX.Framework/CurveTangent.cs index e026d321..62754a71 100644 --- a/ANX.Framework/CurveTangent.cs +++ b/ANX.Framework/CurveTangent.cs @@ -7,6 +7,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum CurveTangent { diff --git a/ANX.Framework/Design/ANXFieldDescriptor.cs b/ANX.Framework/Design/ANXFieldDescriptor.cs index caadc82b..ba324348 100644 --- a/ANX.Framework/Design/ANXFieldDescriptor.cs +++ b/ANX.Framework/Design/ANXFieldDescriptor.cs @@ -1,6 +1,7 @@ using System; using System.ComponentModel; using System.Reflection; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -9,6 +10,7 @@ using System.Reflection; namespace ANX.Framework.Design { #if !WINDOWSMETRO + [Developer("AstrorEnales")] public class ANXFieldDescriptor : PropertyDescriptor { private FieldInfo field; diff --git a/ANX.Framework/Design/ANXPropertyDescriptor.cs b/ANX.Framework/Design/ANXPropertyDescriptor.cs index 1e12b3d9..97c5655d 100644 --- a/ANX.Framework/Design/ANXPropertyDescriptor.cs +++ b/ANX.Framework/Design/ANXPropertyDescriptor.cs @@ -1,6 +1,7 @@ using System; using System.ComponentModel; using System.Reflection; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -9,6 +10,7 @@ using System.Reflection; namespace ANX.Framework.Design { #if !WINDOWSMETRO + [Developer("AstrorEnales")] public class ANXPropertyDescriptor : PropertyDescriptor { private PropertyInfo property; diff --git a/ANX.Framework/Design/BoundingBoxConverter.cs b/ANX.Framework/Design/BoundingBoxConverter.cs index a2f344f0..7e03bf43 100644 --- a/ANX.Framework/Design/BoundingBoxConverter.cs +++ b/ANX.Framework/Design/BoundingBoxConverter.cs @@ -2,6 +2,7 @@ using System; using System.Collections; using System.ComponentModel; using System.Globalization; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -10,7 +11,7 @@ using System.Globalization; namespace ANX.Framework.Design { #if !WINDOWSMETRO //TODO: search replacement for Win8 - + [Developer("GinieDP")] public class BoundingBoxConverter : MathTypeConverter { public BoundingBoxConverter() diff --git a/ANX.Framework/Design/BoundingSphereConverter.cs b/ANX.Framework/Design/BoundingSphereConverter.cs index 9a9879b1..cc7c8cc4 100644 --- a/ANX.Framework/Design/BoundingSphereConverter.cs +++ b/ANX.Framework/Design/BoundingSphereConverter.cs @@ -2,6 +2,7 @@ using System; using System.Collections; using System.ComponentModel; using System.Globalization; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -10,7 +11,7 @@ using System.Globalization; namespace ANX.Framework.Design { #if !WINDOWSMETRO //TODO: search replacement for Win8 - + [Developer("GinieDP")] public class BoundingSphereConverter : MathTypeConverter { public BoundingSphereConverter() diff --git a/ANX.Framework/Design/ColorConverter.cs b/ANX.Framework/Design/ColorConverter.cs index 3285f766..c031565c 100644 --- a/ANX.Framework/Design/ColorConverter.cs +++ b/ANX.Framework/Design/ColorConverter.cs @@ -2,6 +2,7 @@ using System; using System.Collections; using System.ComponentModel; using System.Globalization; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -10,7 +11,7 @@ using System.Globalization; namespace ANX.Framework.Design { #if !WINDOWSMETRO //TODO: search replacement for Win8 - + [Developer("GinieDP")] public class ColorConverter : MathTypeConverter { public ColorConverter() diff --git a/ANX.Framework/Design/MathTypeConverter.cs b/ANX.Framework/Design/MathTypeConverter.cs index ccedc098..9b912a39 100644 --- a/ANX.Framework/Design/MathTypeConverter.cs +++ b/ANX.Framework/Design/MathTypeConverter.cs @@ -7,6 +7,7 @@ using System.ComponentModel.Design.Serialization; using System.Globalization; using System.Text; using ANX.Framework.NonXNA.Reflection; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -17,7 +18,7 @@ using ANX.Framework.NonXNA.Reflection; namespace ANX.Framework.Design { #if !WINDOWSMETRO //TODO: search replacement for Win8 - + [Developer("GinieDP")] public class MathTypeConverter : ExpandableObjectConverter { protected PropertyDescriptorCollection propertyDescriptions; diff --git a/ANX.Framework/Design/MatrixConverter.cs b/ANX.Framework/Design/MatrixConverter.cs index b5557288..e53fa3da 100644 --- a/ANX.Framework/Design/MatrixConverter.cs +++ b/ANX.Framework/Design/MatrixConverter.cs @@ -2,6 +2,7 @@ using System; using System.Collections; using System.ComponentModel; using System.Globalization; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -10,7 +11,7 @@ using System.Globalization; namespace ANX.Framework.Design { #if !WINDOWSMETRO //TODO: search replacement for Win8 - + [Developer("GinieDP")] public class MatrixConverter : MathTypeConverter { public MatrixConverter() diff --git a/ANX.Framework/Design/PlaneConverter.cs b/ANX.Framework/Design/PlaneConverter.cs index 68c92b35..b84a252e 100644 --- a/ANX.Framework/Design/PlaneConverter.cs +++ b/ANX.Framework/Design/PlaneConverter.cs @@ -2,6 +2,7 @@ using System; using System.Collections; using System.ComponentModel; using System.Globalization; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -10,7 +11,7 @@ using System.Globalization; namespace ANX.Framework.Design { #if !WINDOWSMETRO //TODO: search replacement for Win8 - + [Developer("GinieDP")] public class PlaneConverter : MathTypeConverter { public PlaneConverter() diff --git a/ANX.Framework/Design/PointConverter.cs b/ANX.Framework/Design/PointConverter.cs index d19cc2f7..bc4c917b 100644 --- a/ANX.Framework/Design/PointConverter.cs +++ b/ANX.Framework/Design/PointConverter.cs @@ -2,6 +2,7 @@ using System; using System.Collections; using System.ComponentModel; using System.Globalization; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -10,7 +11,7 @@ using System.Globalization; namespace ANX.Framework.Design { #if !WINDOWSMETRO //TODO: search replacement for Win8 - + [Developer("GinieDP")] public class PointConverter : MathTypeConverter { public PointConverter() diff --git a/ANX.Framework/Design/QuaternionConverter.cs b/ANX.Framework/Design/QuaternionConverter.cs index bb8640b0..d7887a17 100644 --- a/ANX.Framework/Design/QuaternionConverter.cs +++ b/ANX.Framework/Design/QuaternionConverter.cs @@ -2,6 +2,7 @@ using System; using System.Collections; using System.ComponentModel; using System.Globalization; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -10,7 +11,7 @@ using System.Globalization; namespace ANX.Framework.Design { #if !WINDOWSMETRO //TODO: search replacement for Win8 - + [Developer("GinieDP")] public class QuaternionConverter : MathTypeConverter { public QuaternionConverter() diff --git a/ANX.Framework/Design/RayConverter.cs b/ANX.Framework/Design/RayConverter.cs index 3dcbdf6d..ee830c1a 100644 --- a/ANX.Framework/Design/RayConverter.cs +++ b/ANX.Framework/Design/RayConverter.cs @@ -2,6 +2,7 @@ using System; using System.Collections; using System.ComponentModel; using System.Globalization; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -10,7 +11,7 @@ using System.Globalization; namespace ANX.Framework.Design { #if !WINDOWSMETRO //TODO: search replacement for Win8 - + [Developer("GinieDP")] public class RayConverter : MathTypeConverter { public RayConverter() diff --git a/ANX.Framework/Design/RectangleConverter.cs b/ANX.Framework/Design/RectangleConverter.cs index c8260faf..af700326 100644 --- a/ANX.Framework/Design/RectangleConverter.cs +++ b/ANX.Framework/Design/RectangleConverter.cs @@ -2,6 +2,7 @@ using System; using System.Collections; using System.ComponentModel; using System.Globalization; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -10,7 +11,7 @@ using System.Globalization; namespace ANX.Framework.Design { #if !WINDOWSMETRO //TODO: search replacement for Win8 - + [Developer("GinieDP")] public class RectangleConverter : MathTypeConverter { public RectangleConverter() diff --git a/ANX.Framework/Design/Vector2Converter.cs b/ANX.Framework/Design/Vector2Converter.cs index d5882b38..5678361a 100644 --- a/ANX.Framework/Design/Vector2Converter.cs +++ b/ANX.Framework/Design/Vector2Converter.cs @@ -2,6 +2,7 @@ using System; using System.Collections; using System.ComponentModel; using System.Globalization; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -10,7 +11,7 @@ using System.Globalization; namespace ANX.Framework.Design { #if !WINDOWSMETRO //TODO: search replacement for Win8 - + [Developer("GinieDP")] public class Vector2Converter : MathTypeConverter { public Vector2Converter() diff --git a/ANX.Framework/Design/Vector3Converter.cs b/ANX.Framework/Design/Vector3Converter.cs index 855d48ec..86d37624 100644 --- a/ANX.Framework/Design/Vector3Converter.cs +++ b/ANX.Framework/Design/Vector3Converter.cs @@ -2,6 +2,7 @@ using System; using System.Collections; using System.ComponentModel; using System.Globalization; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -10,7 +11,7 @@ using System.Globalization; namespace ANX.Framework.Design { #if !WINDOWSMETRO //TODO: search replacement for Win8 - + [Developer("GinieDP")] public class Vector3Converter : MathTypeConverter { public Vector3Converter() diff --git a/ANX.Framework/Design/Vector4Converter.cs b/ANX.Framework/Design/Vector4Converter.cs index 1bd75911..eaf68711 100644 --- a/ANX.Framework/Design/Vector4Converter.cs +++ b/ANX.Framework/Design/Vector4Converter.cs @@ -2,6 +2,7 @@ using System; using System.Collections; using System.ComponentModel; using System.Globalization; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -10,7 +11,7 @@ using System.Globalization; namespace ANX.Framework.Design { #if !WINDOWSMETRO //TODO: search replacement for Win8 - + [Developer("GinieDP")] public class Vector4Converter : MathTypeConverter { public Vector4Converter() diff --git a/ANX.Framework/DisplayOrientation.cs b/ANX.Framework/DisplayOrientation.cs index c46cc79b..3aaa61ee 100644 --- a/ANX.Framework/DisplayOrientation.cs +++ b/ANX.Framework/DisplayOrientation.cs @@ -12,6 +12,7 @@ namespace ANX.Framework { [Flags] [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum DisplayOrientation { diff --git a/ANX.Framework/GameHost.cs b/ANX.Framework/GameHost.cs index 1ee3adc1..19f78a88 100644 --- a/ANX.Framework/GameHost.cs +++ b/ANX.Framework/GameHost.cs @@ -1,4 +1,8 @@ +#region Using Statements using System; +using ANX.Framework.NonXNA.Development; + +#endregion // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -6,6 +10,7 @@ using System; namespace ANX.Framework { + [Developer("Glatzemann")] public abstract class GameHost { internal event EventHandler Activated; diff --git a/ANX.Framework/GameTimer.cs b/ANX.Framework/GameTimer.cs index 96d86075..e0b193f5 100644 --- a/ANX.Framework/GameTimer.cs +++ b/ANX.Framework/GameTimer.cs @@ -2,6 +2,7 @@ using ANX.Framework.NonXNA; using ANX.Framework.NonXNA.PlatformSystem; using System; +using ANX.Framework.NonXNA.Development; #endregion @@ -13,6 +14,7 @@ namespace ANX.Framework { //TODO: this class is public on Windows Phone + [Developer("Glatzemann")] internal class GameTimer { private INativeGameTimer nativeImplementation; diff --git a/ANX.Framework/GameWindow.cs b/ANX.Framework/GameWindow.cs index b89f6e73..ea3bd2e7 100644 --- a/ANX.Framework/GameWindow.cs +++ b/ANX.Framework/GameWindow.cs @@ -1,4 +1,8 @@ +#region Using Statements using System; +using ANX.Framework.NonXNA.Development; + +#endregion // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -6,6 +10,7 @@ using System; namespace ANX.Framework { + [Developer("Glatzemann")] public abstract class GameWindow { #region Private diff --git a/ANX.Framework/GamerServices/Achievement.cs b/ANX.Framework/GamerServices/Achievement.cs index a898e661..db85304b 100644 --- a/ANX.Framework/GamerServices/Achievement.cs +++ b/ANX.Framework/GamerServices/Achievement.cs @@ -1,6 +1,7 @@ #region Using Statements using System; using System.IO; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,9 @@ using System.IO; namespace ANX.Framework.GamerServices { + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public sealed class Achievement { public bool DisplayBeforeEarned diff --git a/ANX.Framework/GamerServices/AchievementCollection.cs b/ANX.Framework/GamerServices/AchievementCollection.cs index 0bb2bcd7..716dabd2 100644 --- a/ANX.Framework/GamerServices/AchievementCollection.cs +++ b/ANX.Framework/GamerServices/AchievementCollection.cs @@ -2,6 +2,7 @@ using System; using System.Collections.Generic; using System.Collections; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -11,6 +12,9 @@ using System.Collections; namespace ANX.Framework.GamerServices { + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public sealed class AchievementCollection : IList, ICollection, IEnumerable, IEnumerable, IDisposable { diff --git a/ANX.Framework/GamerServices/AvatarAnimation.cs b/ANX.Framework/GamerServices/AvatarAnimation.cs index 60a36030..f9bc306a 100644 --- a/ANX.Framework/GamerServices/AvatarAnimation.cs +++ b/ANX.Framework/GamerServices/AvatarAnimation.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,7 +10,10 @@ using System; namespace ANX.Framework.GamerServices { - public class AvatarAnimation : IAvatarAnimation, IDisposable + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public class AvatarAnimation : IAvatarAnimation, IDisposable { public AvatarAnimation(AvatarAnimationPreset preset) { diff --git a/ANX.Framework/GamerServices/AvatarAnimationPreset.cs b/ANX.Framework/GamerServices/AvatarAnimationPreset.cs index 48e56375..2da33f4a 100644 --- a/ANX.Framework/GamerServices/AvatarAnimationPreset.cs +++ b/ANX.Framework/GamerServices/AvatarAnimationPreset.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum AvatarAnimationPreset { diff --git a/ANX.Framework/GamerServices/AvatarBodyType.cs b/ANX.Framework/GamerServices/AvatarBodyType.cs index 5bfefb1f..7d0bb31a 100644 --- a/ANX.Framework/GamerServices/AvatarBodyType.cs +++ b/ANX.Framework/GamerServices/AvatarBodyType.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum AvatarBodyType { diff --git a/ANX.Framework/GamerServices/AvatarBone.cs b/ANX.Framework/GamerServices/AvatarBone.cs index 05756774..15c70c5f 100644 --- a/ANX.Framework/GamerServices/AvatarBone.cs +++ b/ANX.Framework/GamerServices/AvatarBone.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum AvatarBone { diff --git a/ANX.Framework/GamerServices/AvatarDescription.cs b/ANX.Framework/GamerServices/AvatarDescription.cs index 8ba860ed..fadc9880 100644 --- a/ANX.Framework/GamerServices/AvatarDescription.cs +++ b/ANX.Framework/GamerServices/AvatarDescription.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,7 +10,10 @@ using System; namespace ANX.Framework.GamerServices { - public class AvatarDescription + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public class AvatarDescription { public bool IsValid { diff --git a/ANX.Framework/GamerServices/AvatarExpression.cs b/ANX.Framework/GamerServices/AvatarExpression.cs index 9d951287..feb71c8c 100644 --- a/ANX.Framework/GamerServices/AvatarExpression.cs +++ b/ANX.Framework/GamerServices/AvatarExpression.cs @@ -1,6 +1,7 @@ #region Using Statements using System; using ANX.Framework; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,9 @@ using ANX.Framework; namespace ANX.Framework.GamerServices { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Tested)] public struct AvatarExpression { public AvatarEye LeftEye { get; set; } diff --git a/ANX.Framework/GamerServices/AvatarEye.cs b/ANX.Framework/GamerServices/AvatarEye.cs index 2b1e1be0..2f850fce 100644 --- a/ANX.Framework/GamerServices/AvatarEye.cs +++ b/ANX.Framework/GamerServices/AvatarEye.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum AvatarEye { diff --git a/ANX.Framework/GamerServices/AvatarEyebrow.cs b/ANX.Framework/GamerServices/AvatarEyebrow.cs index 2021f764..c157c10c 100644 --- a/ANX.Framework/GamerServices/AvatarEyebrow.cs +++ b/ANX.Framework/GamerServices/AvatarEyebrow.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum AvatarEyebrow { diff --git a/ANX.Framework/GamerServices/AvatarMouth.cs b/ANX.Framework/GamerServices/AvatarMouth.cs index 9ebc72a8..cc31f6d8 100644 --- a/ANX.Framework/GamerServices/AvatarMouth.cs +++ b/ANX.Framework/GamerServices/AvatarMouth.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum AvatarMouth { diff --git a/ANX.Framework/GamerServices/AvatarRenderer.cs b/ANX.Framework/GamerServices/AvatarRenderer.cs index 7539aac8..79309f69 100644 --- a/ANX.Framework/GamerServices/AvatarRenderer.cs +++ b/ANX.Framework/GamerServices/AvatarRenderer.cs @@ -2,6 +2,7 @@ using System; using System.Collections.Generic; using System.Collections.ObjectModel; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -11,7 +12,10 @@ using System.Collections.ObjectModel; namespace ANX.Framework.GamerServices { - public class AvatarRenderer : IDisposable + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public class AvatarRenderer : IDisposable { public const int BoneCount = 71; diff --git a/ANX.Framework/GamerServices/AvatarRendererState.cs b/ANX.Framework/GamerServices/AvatarRendererState.cs index 06c0f5f9..46fd2237 100644 --- a/ANX.Framework/GamerServices/AvatarRendererState.cs +++ b/ANX.Framework/GamerServices/AvatarRendererState.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum AvatarRendererState { diff --git a/ANX.Framework/GamerServices/ControllerSensitivity.cs b/ANX.Framework/GamerServices/ControllerSensitivity.cs index af99cf0e..655de4d9 100644 --- a/ANX.Framework/GamerServices/ControllerSensitivity.cs +++ b/ANX.Framework/GamerServices/ControllerSensitivity.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum ControllerSensitivity { diff --git a/ANX.Framework/GamerServices/FriendCollection.cs b/ANX.Framework/GamerServices/FriendCollection.cs index 67843302..df367bac 100644 --- a/ANX.Framework/GamerServices/FriendCollection.cs +++ b/ANX.Framework/GamerServices/FriendCollection.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,7 +10,10 @@ using System; namespace ANX.Framework.GamerServices { - public sealed class FriendCollection : GamerCollection, IDisposable + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public sealed class FriendCollection : GamerCollection, IDisposable { public bool IsDisposed { diff --git a/ANX.Framework/GamerServices/FriendGamer.cs b/ANX.Framework/GamerServices/FriendGamer.cs index 5c53a4a4..64e5467c 100644 --- a/ANX.Framework/GamerServices/FriendGamer.cs +++ b/ANX.Framework/GamerServices/FriendGamer.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,9 @@ using System; namespace ANX.Framework.GamerServices { + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public sealed class FriendGamer : Gamer { public bool FriendRequestReceivedFrom diff --git a/ANX.Framework/GamerServices/GameDefaults.cs b/ANX.Framework/GamerServices/GameDefaults.cs index f050e8b8..57a1ae88 100644 --- a/ANX.Framework/GamerServices/GameDefaults.cs +++ b/ANX.Framework/GamerServices/GameDefaults.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,7 +10,10 @@ using System; namespace ANX.Framework.GamerServices { - public sealed class GameDefaults + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public sealed class GameDefaults { public GameDifficulty GameDifficulty { diff --git a/ANX.Framework/GamerServices/GameDifficulty.cs b/ANX.Framework/GamerServices/GameDifficulty.cs index d9197dce..6c1865be 100644 --- a/ANX.Framework/GamerServices/GameDifficulty.cs +++ b/ANX.Framework/GamerServices/GameDifficulty.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum GameDifficulty { diff --git a/ANX.Framework/GamerServices/GameUpdateRequiredException.cs b/ANX.Framework/GamerServices/GameUpdateRequiredException.cs index 4b67dcf8..fabd9b18 100644 --- a/ANX.Framework/GamerServices/GameUpdateRequiredException.cs +++ b/ANX.Framework/GamerServices/GameUpdateRequiredException.cs @@ -1,6 +1,7 @@ #region Using Statements using System; using System.Runtime.Serialization; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,9 @@ using System.Runtime.Serialization; namespace ANX.Framework.GamerServices { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public class GameUpdateRequiredException : Exception { public GameUpdateRequiredException() diff --git a/ANX.Framework/GamerServices/Gamer.cs b/ANX.Framework/GamerServices/Gamer.cs index 4d37676a..b08d3697 100644 --- a/ANX.Framework/GamerServices/Gamer.cs +++ b/ANX.Framework/GamerServices/Gamer.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,9 @@ using System; namespace ANX.Framework.GamerServices { + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public abstract class Gamer { public static IAsyncResult BeginGetFromGamertag(string gamertag, AsyncCallback callback, Object asyncState) diff --git a/ANX.Framework/GamerServices/GamerCollection.cs b/ANX.Framework/GamerServices/GamerCollection.cs index ec08d53c..5409ffb5 100644 --- a/ANX.Framework/GamerServices/GamerCollection.cs +++ b/ANX.Framework/GamerServices/GamerCollection.cs @@ -3,6 +3,7 @@ using System; using System.Collections; using System.Collections.ObjectModel; using System.Collections.Generic; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -12,7 +13,10 @@ using System.Collections.Generic; namespace ANX.Framework.GamerServices { - public class GamerCollection : ReadOnlyCollection, + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public class GamerCollection : ReadOnlyCollection, IEnumerable, IEnumerable where T : Gamer { #region GamerCollectionEnumerator diff --git a/ANX.Framework/GamerServices/GamerPresence.cs b/ANX.Framework/GamerServices/GamerPresence.cs index b585e0a1..33cfa065 100644 --- a/ANX.Framework/GamerServices/GamerPresence.cs +++ b/ANX.Framework/GamerServices/GamerPresence.cs @@ -10,7 +10,8 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { - [PercentageComplete(0)] + [PercentageComplete(10)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Untested)] public sealed class GamerPresence { diff --git a/ANX.Framework/GamerServices/GamerPresenceMode.cs b/ANX.Framework/GamerServices/GamerPresenceMode.cs index 7ce43373..e1775a41 100644 --- a/ANX.Framework/GamerServices/GamerPresenceMode.cs +++ b/ANX.Framework/GamerServices/GamerPresenceMode.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum GamerPresenceMode { diff --git a/ANX.Framework/GamerServices/GamerPrivilegeException.cs b/ANX.Framework/GamerServices/GamerPrivilegeException.cs index 9ada1f89..11f5264f 100644 --- a/ANX.Framework/GamerServices/GamerPrivilegeException.cs +++ b/ANX.Framework/GamerServices/GamerPrivilegeException.cs @@ -1,6 +1,7 @@ #region Using Statements using System; using System.Runtime.Serialization; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,9 @@ using System.Runtime.Serialization; namespace ANX.Framework.GamerServices { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public class GamerPrivilegeException : Exception { public GamerPrivilegeException() diff --git a/ANX.Framework/GamerServices/GamerPrivilegeSetting.cs b/ANX.Framework/GamerServices/GamerPrivilegeSetting.cs index 27551a45..c2439d96 100644 --- a/ANX.Framework/GamerServices/GamerPrivilegeSetting.cs +++ b/ANX.Framework/GamerServices/GamerPrivilegeSetting.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum GamerPrivilegeSetting { diff --git a/ANX.Framework/GamerServices/GamerPrivileges.cs b/ANX.Framework/GamerServices/GamerPrivileges.cs index a2a1430a..7344da25 100644 --- a/ANX.Framework/GamerServices/GamerPrivileges.cs +++ b/ANX.Framework/GamerServices/GamerPrivileges.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,7 +10,10 @@ using System; namespace ANX.Framework.GamerServices { - public sealed class GamerPrivileges + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public sealed class GamerPrivileges { public bool AllowOnlineSessions { diff --git a/ANX.Framework/GamerServices/GamerProfile.cs b/ANX.Framework/GamerServices/GamerProfile.cs index 65d1f5c8..11f21fde 100644 --- a/ANX.Framework/GamerServices/GamerProfile.cs +++ b/ANX.Framework/GamerServices/GamerProfile.cs @@ -2,6 +2,7 @@ using System; using System.IO; using System.Globalization; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -11,6 +12,9 @@ using System.Globalization; namespace ANX.Framework.GamerServices { + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public sealed class GamerProfile : IDisposable { public void Dispose() diff --git a/ANX.Framework/GamerServices/GamerServicesComponent.cs b/ANX.Framework/GamerServices/GamerServicesComponent.cs index a53382e8..d7ce5716 100644 --- a/ANX.Framework/GamerServices/GamerServicesComponent.cs +++ b/ANX.Framework/GamerServices/GamerServicesComponent.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,9 @@ using System; namespace ANX.Framework.GamerServices { + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public class GamerServicesComponent : GameComponent { public GamerServicesComponent(Game game) diff --git a/ANX.Framework/GamerServices/GamerServicesDispatcher.cs b/ANX.Framework/GamerServices/GamerServicesDispatcher.cs index 3d02c59f..0d782e7a 100644 --- a/ANX.Framework/GamerServices/GamerServicesDispatcher.cs +++ b/ANX.Framework/GamerServices/GamerServicesDispatcher.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,7 +10,10 @@ using System; namespace ANX.Framework.GamerServices { - public static class GamerServicesDispatcher + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public static class GamerServicesDispatcher { public static bool IsInitialized { diff --git a/ANX.Framework/GamerServices/GamerServicesNotAvailableException.cs b/ANX.Framework/GamerServices/GamerServicesNotAvailableException.cs index 11bfa354..cc690d8c 100644 --- a/ANX.Framework/GamerServices/GamerServicesNotAvailableException.cs +++ b/ANX.Framework/GamerServices/GamerServicesNotAvailableException.cs @@ -1,6 +1,7 @@ #region Using Statements using System; using System.Runtime.Serialization; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,9 @@ using System.Runtime.Serialization; namespace ANX.Framework.GamerServices { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public class GamerServicesNotAvailableException : Exception { public GamerServicesNotAvailableException() diff --git a/ANX.Framework/GamerServices/GamerZone.cs b/ANX.Framework/GamerServices/GamerZone.cs index 812ce76f..7a4e5283 100644 --- a/ANX.Framework/GamerServices/GamerZone.cs +++ b/ANX.Framework/GamerServices/GamerZone.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum GamerZone { diff --git a/ANX.Framework/GamerServices/Guide.cs b/ANX.Framework/GamerServices/Guide.cs index 356df58c..7688ab45 100644 --- a/ANX.Framework/GamerServices/Guide.cs +++ b/ANX.Framework/GamerServices/Guide.cs @@ -1,6 +1,7 @@ #region Using Statements using System; using System.Collections.Generic; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,7 +11,10 @@ using System.Collections.Generic; namespace ANX.Framework.GamerServices { - public static class Guide + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public static class Guide { public static bool IsTrialMode { diff --git a/ANX.Framework/GamerServices/GuideAlreadyVisibleException.cs b/ANX.Framework/GamerServices/GuideAlreadyVisibleException.cs index d4501782..30c98a81 100644 --- a/ANX.Framework/GamerServices/GuideAlreadyVisibleException.cs +++ b/ANX.Framework/GamerServices/GuideAlreadyVisibleException.cs @@ -1,6 +1,7 @@ #region Using Statements using System; using System.Runtime.Serialization; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,9 @@ using System.Runtime.Serialization; namespace ANX.Framework.GamerServices { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public class GuideAlreadyVisibleException : Exception { public GuideAlreadyVisibleException() diff --git a/ANX.Framework/GamerServices/IAvatarAnimation.cs b/ANX.Framework/GamerServices/IAvatarAnimation.cs index dcd2d07a..91aab611 100644 --- a/ANX.Framework/GamerServices/IAvatarAnimation.cs +++ b/ANX.Framework/GamerServices/IAvatarAnimation.cs @@ -9,6 +9,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public interface IAvatarAnimation { diff --git a/ANX.Framework/GamerServices/InviteAcceptedEventArgs.cs b/ANX.Framework/GamerServices/InviteAcceptedEventArgs.cs index 2840614e..ef879f88 100644 --- a/ANX.Framework/GamerServices/InviteAcceptedEventArgs.cs +++ b/ANX.Framework/GamerServices/InviteAcceptedEventArgs.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public class InviteAcceptedEventArgs : EventArgs { diff --git a/ANX.Framework/GamerServices/LeaderboardEntry.cs b/ANX.Framework/GamerServices/LeaderboardEntry.cs index 8f1d6513..ed0dee01 100644 --- a/ANX.Framework/GamerServices/LeaderboardEntry.cs +++ b/ANX.Framework/GamerServices/LeaderboardEntry.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,7 +10,10 @@ using System; namespace ANX.Framework.GamerServices { - public sealed class LeaderboardEntry + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public sealed class LeaderboardEntry { public Gamer Gamer { diff --git a/ANX.Framework/GamerServices/LeaderboardIdentity.cs b/ANX.Framework/GamerServices/LeaderboardIdentity.cs index 81ae6ea5..cce41da7 100644 --- a/ANX.Framework/GamerServices/LeaderboardIdentity.cs +++ b/ANX.Framework/GamerServices/LeaderboardIdentity.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,9 @@ using System; namespace ANX.Framework.GamerServices { + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public struct LeaderboardIdentity { public static LeaderboardIdentity Create(LeaderboardKey key) diff --git a/ANX.Framework/GamerServices/LeaderboardKey.cs b/ANX.Framework/GamerServices/LeaderboardKey.cs index 03c5ee79..6eeb977a 100644 --- a/ANX.Framework/GamerServices/LeaderboardKey.cs +++ b/ANX.Framework/GamerServices/LeaderboardKey.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum LeaderboardKey { diff --git a/ANX.Framework/GamerServices/LeaderboardOutcome.cs b/ANX.Framework/GamerServices/LeaderboardOutcome.cs index 15e6bbc8..9740a227 100644 --- a/ANX.Framework/GamerServices/LeaderboardOutcome.cs +++ b/ANX.Framework/GamerServices/LeaderboardOutcome.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum LeaderboardOutcome { diff --git a/ANX.Framework/GamerServices/LeaderboardReader.cs b/ANX.Framework/GamerServices/LeaderboardReader.cs index 13419dd7..977c7a56 100644 --- a/ANX.Framework/GamerServices/LeaderboardReader.cs +++ b/ANX.Framework/GamerServices/LeaderboardReader.cs @@ -2,6 +2,7 @@ using System; using System.Collections.Generic; using System.Collections.ObjectModel; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -11,7 +12,10 @@ using System.Collections.ObjectModel; namespace ANX.Framework.GamerServices { - public sealed class LeaderboardReader : IDisposable + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public sealed class LeaderboardReader : IDisposable { public LeaderboardIdentity LeaderboardIdentity { diff --git a/ANX.Framework/GamerServices/LeaderboardWriter.cs b/ANX.Framework/GamerServices/LeaderboardWriter.cs index 32bcb68b..78b50a2d 100644 --- a/ANX.Framework/GamerServices/LeaderboardWriter.cs +++ b/ANX.Framework/GamerServices/LeaderboardWriter.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,7 +10,10 @@ using System; namespace ANX.Framework.GamerServices { - public sealed class LeaderboardWriter : IDisposable + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public sealed class LeaderboardWriter : IDisposable { public LeaderboardEntry GetLeaderboard(LeaderboardIdentity identity) { diff --git a/ANX.Framework/GamerServices/MessageBoxIcon.cs b/ANX.Framework/GamerServices/MessageBoxIcon.cs index cc00ac92..0a4b9ae5 100644 --- a/ANX.Framework/GamerServices/MessageBoxIcon.cs +++ b/ANX.Framework/GamerServices/MessageBoxIcon.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum MessageBoxIcon { diff --git a/ANX.Framework/GamerServices/NetworkException.cs b/ANX.Framework/GamerServices/NetworkException.cs index dc9e21c1..9f4c8740 100644 --- a/ANX.Framework/GamerServices/NetworkException.cs +++ b/ANX.Framework/GamerServices/NetworkException.cs @@ -1,6 +1,7 @@ #region Using Statements using System; using System.Runtime.Serialization; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,9 @@ using System.Runtime.Serialization; namespace ANX.Framework.GamerServices { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public class NetworkException : Exception { public NetworkException() diff --git a/ANX.Framework/GamerServices/NetworkNotAvailableException.cs b/ANX.Framework/GamerServices/NetworkNotAvailableException.cs index 413f9beb..4dab02a5 100644 --- a/ANX.Framework/GamerServices/NetworkNotAvailableException.cs +++ b/ANX.Framework/GamerServices/NetworkNotAvailableException.cs @@ -1,6 +1,7 @@ #region Using Statements using System; using System.Runtime.Serialization; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,6 +11,9 @@ using System.Runtime.Serialization; namespace ANX.Framework.GamerServices { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public class NetworkNotAvailableException : NetworkException { public NetworkNotAvailableException() diff --git a/ANX.Framework/GamerServices/NotificationPosition.cs b/ANX.Framework/GamerServices/NotificationPosition.cs index 83903f6d..cd962dcd 100644 --- a/ANX.Framework/GamerServices/NotificationPosition.cs +++ b/ANX.Framework/GamerServices/NotificationPosition.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum NotificationPosition { diff --git a/ANX.Framework/GamerServices/PropertyDictionary.cs b/ANX.Framework/GamerServices/PropertyDictionary.cs index bfcb7a24..e786b037 100644 --- a/ANX.Framework/GamerServices/PropertyDictionary.cs +++ b/ANX.Framework/GamerServices/PropertyDictionary.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; using System.Collections; using System.IO; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -12,6 +13,9 @@ using System.IO; namespace ANX.Framework.GamerServices { + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public sealed class PropertyDictionary : IDictionary, ICollection>, IEnumerable>, IEnumerable { public void Add(string key, object value) diff --git a/ANX.Framework/GamerServices/RacingCameraAngle.cs b/ANX.Framework/GamerServices/RacingCameraAngle.cs index 4dabffe1..810eea0c 100644 --- a/ANX.Framework/GamerServices/RacingCameraAngle.cs +++ b/ANX.Framework/GamerServices/RacingCameraAngle.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum RacingCameraAngle { diff --git a/ANX.Framework/GamerServices/SignedInEventArgs.cs b/ANX.Framework/GamerServices/SignedInEventArgs.cs index b0893783..2eb1f449 100644 --- a/ANX.Framework/GamerServices/SignedInEventArgs.cs +++ b/ANX.Framework/GamerServices/SignedInEventArgs.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public class SignedInEventArgs : EventArgs { diff --git a/ANX.Framework/GamerServices/SignedInGamer.cs b/ANX.Framework/GamerServices/SignedInGamer.cs index 87b6c853..58a76302 100644 --- a/ANX.Framework/GamerServices/SignedInGamer.cs +++ b/ANX.Framework/GamerServices/SignedInGamer.cs @@ -1,6 +1,7 @@ #region Using Statements using System; using ANX.Framework.Audio; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -10,7 +11,10 @@ using ANX.Framework.Audio; namespace ANX.Framework.GamerServices { - public sealed class SignedInGamer : Gamer + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public sealed class SignedInGamer : Gamer { public PlayerIndex PlayerIndex { diff --git a/ANX.Framework/GamerServices/SignedInGamerCollection.cs b/ANX.Framework/GamerServices/SignedInGamerCollection.cs index acfd25bd..056bc38d 100644 --- a/ANX.Framework/GamerServices/SignedInGamerCollection.cs +++ b/ANX.Framework/GamerServices/SignedInGamerCollection.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,7 +10,10 @@ using System; namespace ANX.Framework.GamerServices { - public sealed class SignedInGamerCollection : GamerCollection + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public sealed class SignedInGamerCollection : GamerCollection { public SignedInGamer this[PlayerIndex playerIndex] { diff --git a/ANX.Framework/GamerServices/SignedOutEventArgs.cs b/ANX.Framework/GamerServices/SignedOutEventArgs.cs index cbd05cf1..169b2778 100644 --- a/ANX.Framework/GamerServices/SignedOutEventArgs.cs +++ b/ANX.Framework/GamerServices/SignedOutEventArgs.cs @@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.GamerServices { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public class SignedOutEventArgs : EventArgs { diff --git a/ANX.Framework/Graphics/Blend.cs b/ANX.Framework/Graphics/Blend.cs index d3647179..19835fe9 100644 --- a/ANX.Framework/Graphics/Blend.cs +++ b/ANX.Framework/Graphics/Blend.cs @@ -2,8 +2,12 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public enum Blend { One, diff --git a/ANX.Framework/Graphics/BlendFunction.cs b/ANX.Framework/Graphics/BlendFunction.cs index 2bf1a456..8ea85139 100644 --- a/ANX.Framework/Graphics/BlendFunction.cs +++ b/ANX.Framework/Graphics/BlendFunction.cs @@ -2,8 +2,12 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public enum BlendFunction { Add, diff --git a/ANX.Framework/Graphics/BlendState.cs b/ANX.Framework/Graphics/BlendState.cs index 7abc6e3d..d5ee40a2 100644 --- a/ANX.Framework/Graphics/BlendState.cs +++ b/ANX.Framework/Graphics/BlendState.cs @@ -2,6 +2,7 @@ using System; using System.Runtime.InteropServices; using ANX.Framework.NonXNA; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -11,6 +12,9 @@ using ANX.Framework.NonXNA; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public class BlendState : GraphicsResource { #region Private Members diff --git a/ANX.Framework/Graphics/BufferUSage.cs b/ANX.Framework/Graphics/BufferUSage.cs index 5942196a..1ce9d0cf 100644 --- a/ANX.Framework/Graphics/BufferUSage.cs +++ b/ANX.Framework/Graphics/BufferUSage.cs @@ -1,4 +1,5 @@ using System; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -7,6 +8,9 @@ using System; namespace ANX.Framework.Graphics { [Flags] + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public enum BufferUsage { None, diff --git a/ANX.Framework/Graphics/ClearOptions.cs b/ANX.Framework/Graphics/ClearOptions.cs index 41e3ab84..d7efec98 100644 --- a/ANX.Framework/Graphics/ClearOptions.cs +++ b/ANX.Framework/Graphics/ClearOptions.cs @@ -1,4 +1,5 @@ using System; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -7,6 +8,9 @@ using System; namespace ANX.Framework.Graphics { [Flags] + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public enum ClearOptions { DepthBuffer = 2, diff --git a/ANX.Framework/Graphics/ColorWriteChannels.cs b/ANX.Framework/Graphics/ColorWriteChannels.cs index e30d471f..15e77181 100644 --- a/ANX.Framework/Graphics/ColorWriteChannels.cs +++ b/ANX.Framework/Graphics/ColorWriteChannels.cs @@ -1,4 +1,5 @@ using System; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -7,6 +8,9 @@ using System; namespace ANX.Framework.Graphics { [Flags] + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public enum ColorWriteChannels { All = 15, diff --git a/ANX.Framework/Graphics/CompareFunction.cs b/ANX.Framework/Graphics/CompareFunction.cs index 5c89ee32..61d59757 100644 --- a/ANX.Framework/Graphics/CompareFunction.cs +++ b/ANX.Framework/Graphics/CompareFunction.cs @@ -2,8 +2,12 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public enum CompareFunction { Always, diff --git a/ANX.Framework/Graphics/ConstantBuffer.cs b/ANX.Framework/Graphics/ConstantBuffer.cs index 14a2a03f..6050fb99 100644 --- a/ANX.Framework/Graphics/ConstantBuffer.cs +++ b/ANX.Framework/Graphics/ConstantBuffer.cs @@ -10,7 +10,7 @@ namespace ANX.Framework.Graphics { #if XNAEXT - [PercentageComplete(10)] + [PercentageComplete(25)] [TestState(TestStateAttribute.TestState.Untested)] [Developer("Glatzemann")] public class ConstantBuffer : GraphicsResource, IGraphicsResource diff --git a/ANX.Framework/Graphics/CubeMapFace.cs b/ANX.Framework/Graphics/CubeMapFace.cs index 53a55f3c..0afa5e40 100644 --- a/ANX.Framework/Graphics/CubeMapFace.cs +++ b/ANX.Framework/Graphics/CubeMapFace.cs @@ -2,8 +2,12 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public enum CubeMapFace { PositiveX, diff --git a/ANX.Framework/Graphics/CullMode.cs b/ANX.Framework/Graphics/CullMode.cs index 79547edd..26332e7c 100644 --- a/ANX.Framework/Graphics/CullMode.cs +++ b/ANX.Framework/Graphics/CullMode.cs @@ -2,8 +2,12 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public enum CullMode { None, diff --git a/ANX.Framework/Graphics/DepthFormat.cs b/ANX.Framework/Graphics/DepthFormat.cs index 2d89cea1..b57b41ef 100644 --- a/ANX.Framework/Graphics/DepthFormat.cs +++ b/ANX.Framework/Graphics/DepthFormat.cs @@ -2,8 +2,12 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public enum DepthFormat { None, diff --git a/ANX.Framework/Graphics/DepthStencilState.cs b/ANX.Framework/Graphics/DepthStencilState.cs index f8689f68..f553e049 100644 --- a/ANX.Framework/Graphics/DepthStencilState.cs +++ b/ANX.Framework/Graphics/DepthStencilState.cs @@ -2,6 +2,7 @@ using System; using ANX.Framework.NonXNA; using System.Runtime.InteropServices; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -11,6 +12,9 @@ using System.Runtime.InteropServices; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public class DepthStencilState : GraphicsResource { #region Private Members diff --git a/ANX.Framework/Graphics/DeviceLostException.cs b/ANX.Framework/Graphics/DeviceLostException.cs index 9ebad718..eef2c8c2 100644 --- a/ANX.Framework/Graphics/DeviceLostException.cs +++ b/ANX.Framework/Graphics/DeviceLostException.cs @@ -1,4 +1,5 @@ using System; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -6,7 +7,10 @@ using System; namespace ANX.Framework.Graphics { - public sealed class DeviceLostException : Exception + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public sealed class DeviceLostException : Exception { public DeviceLostException() : base() diff --git a/ANX.Framework/Graphics/DeviceNotResetException.cs b/ANX.Framework/Graphics/DeviceNotResetException.cs index 7899233c..fecb1416 100644 --- a/ANX.Framework/Graphics/DeviceNotResetException.cs +++ b/ANX.Framework/Graphics/DeviceNotResetException.cs @@ -1,4 +1,5 @@ using System; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -6,7 +7,10 @@ using System; namespace ANX.Framework.Graphics { - public sealed class DeviceNotResetException : Exception + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public sealed class DeviceNotResetException : Exception { public DeviceNotResetException() : base() diff --git a/ANX.Framework/Graphics/DirectionalLight.cs b/ANX.Framework/Graphics/DirectionalLight.cs index 6c4694fb..67399b53 100644 --- a/ANX.Framework/Graphics/DirectionalLight.cs +++ b/ANX.Framework/Graphics/DirectionalLight.cs @@ -8,6 +8,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Graphics { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Untested)] public sealed class DirectionalLight { diff --git a/ANX.Framework/Graphics/DisplayModeCollection.cs b/ANX.Framework/Graphics/DisplayModeCollection.cs index 06ca0ffa..781bb3fe 100644 --- a/ANX.Framework/Graphics/DisplayModeCollection.cs +++ b/ANX.Framework/Graphics/DisplayModeCollection.cs @@ -2,6 +2,7 @@ using System; using System.Collections; using System.Collections.Generic; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -11,6 +12,9 @@ using System.Collections.Generic; namespace ANX.Framework.Graphics { + [PercentageComplete(30)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public class DisplayModeCollection : IEnumerable, IEnumerable { private List displayModes = new List(); diff --git a/ANX.Framework/Graphics/DynamicIndexBuffer.cs b/ANX.Framework/Graphics/DynamicIndexBuffer.cs index 540873dc..97b7a55b 100644 --- a/ANX.Framework/Graphics/DynamicIndexBuffer.cs +++ b/ANX.Framework/Graphics/DynamicIndexBuffer.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,9 @@ using System; namespace ANX.Framework.Graphics { + [PercentageComplete(80)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public class DynamicIndexBuffer : IndexBuffer, IDynamicGraphicsResource { public virtual event EventHandler ContentLost; diff --git a/ANX.Framework/Graphics/DynamicVertexBuffer.cs b/ANX.Framework/Graphics/DynamicVertexBuffer.cs index e8d6f1f8..fc077244 100644 --- a/ANX.Framework/Graphics/DynamicVertexBuffer.cs +++ b/ANX.Framework/Graphics/DynamicVertexBuffer.cs @@ -1,5 +1,6 @@ #region Using Statements using System; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -9,6 +10,9 @@ using System; namespace ANX.Framework.Graphics { + [PercentageComplete(80)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public class DynamicVertexBuffer : VertexBuffer, IDynamicGraphicsResource { public virtual event EventHandler ContentLost; diff --git a/ANX.Framework/Graphics/Effect.cs b/ANX.Framework/Graphics/Effect.cs index 78f11899..660aa5f6 100644 --- a/ANX.Framework/Graphics/Effect.cs +++ b/ANX.Framework/Graphics/Effect.cs @@ -2,6 +2,7 @@ using System; using System.IO; using System.Runtime.InteropServices; using ANX.Framework.NonXNA; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -9,7 +10,10 @@ using ANX.Framework.NonXNA; namespace ANX.Framework.Graphics { - public class Effect : GraphicsResource, IGraphicsResource + [PercentageComplete(90)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public class Effect : GraphicsResource, IGraphicsResource { #region Private private INativeEffect nativeEffect; diff --git a/ANX.Framework/Graphics/EffectAnnotation.cs b/ANX.Framework/Graphics/EffectAnnotation.cs index 5a3ac43d..d52783e0 100644 --- a/ANX.Framework/Graphics/EffectAnnotation.cs +++ b/ANX.Framework/Graphics/EffectAnnotation.cs @@ -1,4 +1,5 @@ using System; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -6,6 +7,9 @@ using System; namespace ANX.Framework.Graphics { + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public sealed class EffectAnnotation { public int ColumnCount diff --git a/ANX.Framework/Graphics/EffectAnnotationCollection.cs b/ANX.Framework/Graphics/EffectAnnotationCollection.cs index a7c02246..bb4f7949 100644 --- a/ANX.Framework/Graphics/EffectAnnotationCollection.cs +++ b/ANX.Framework/Graphics/EffectAnnotationCollection.cs @@ -2,6 +2,7 @@ using System; using System.Collections.Generic; using System.Collections; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -11,6 +12,9 @@ using System.Collections; namespace ANX.Framework.Graphics { + [PercentageComplete(10)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public sealed class EffectAnnotationCollection : IEnumerable { public EffectAnnotation this[int index] diff --git a/ANX.Framework/Graphics/EffectMaterial.cs b/ANX.Framework/Graphics/EffectMaterial.cs index d8a9519a..55df4693 100644 --- a/ANX.Framework/Graphics/EffectMaterial.cs +++ b/ANX.Framework/Graphics/EffectMaterial.cs @@ -2,8 +2,12 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public class EffectMaterial : Effect { public EffectMaterial(Effect cloneSource) diff --git a/ANX.Framework/Graphics/EffectParameterClass.cs b/ANX.Framework/Graphics/EffectParameterClass.cs index e609adf5..b471593b 100644 --- a/ANX.Framework/Graphics/EffectParameterClass.cs +++ b/ANX.Framework/Graphics/EffectParameterClass.cs @@ -2,8 +2,12 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public enum EffectParameterClass { Scalar, diff --git a/ANX.Framework/Graphics/EffectParameterType.cs b/ANX.Framework/Graphics/EffectParameterType.cs index bf7f0356..635b4318 100644 --- a/ANX.Framework/Graphics/EffectParameterType.cs +++ b/ANX.Framework/Graphics/EffectParameterType.cs @@ -2,8 +2,12 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public enum EffectParameterType { Void, diff --git a/ANX.Framework/Graphics/EffectPass.cs b/ANX.Framework/Graphics/EffectPass.cs index 6ea68fc4..a89bc620 100644 --- a/ANX.Framework/Graphics/EffectPass.cs +++ b/ANX.Framework/Graphics/EffectPass.cs @@ -1,4 +1,5 @@ using System; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -6,6 +7,9 @@ using System; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public sealed class EffectPass { private string name; diff --git a/ANX.Framework/Graphics/EffectPassCollection.cs b/ANX.Framework/Graphics/EffectPassCollection.cs index 1cd2381e..85dbee6d 100644 --- a/ANX.Framework/Graphics/EffectPassCollection.cs +++ b/ANX.Framework/Graphics/EffectPassCollection.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; using System.Collections; using ANX.Framework.NonXNA; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -12,6 +13,9 @@ using ANX.Framework.NonXNA; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public sealed class EffectPassCollection : IEnumerable { #region Private Members diff --git a/ANX.Framework/Graphics/EffectTechnique.cs b/ANX.Framework/Graphics/EffectTechnique.cs index 6ffa201c..59b1e885 100644 --- a/ANX.Framework/Graphics/EffectTechnique.cs +++ b/ANX.Framework/Graphics/EffectTechnique.cs @@ -1,5 +1,6 @@ using System; using ANX.Framework.NonXNA; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -7,6 +8,9 @@ using ANX.Framework.NonXNA; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public sealed class EffectTechnique { private Effect parentEffect; diff --git a/ANX.Framework/Graphics/EffectTechniqueCollection.cs b/ANX.Framework/Graphics/EffectTechniqueCollection.cs index 3aa2336b..de34f6e5 100644 --- a/ANX.Framework/Graphics/EffectTechniqueCollection.cs +++ b/ANX.Framework/Graphics/EffectTechniqueCollection.cs @@ -5,6 +5,7 @@ using System.Linq; using System.Text; using ANX.Framework.NonXNA; using System.Collections; +using ANX.Framework.NonXNA.Development; #endregion // Using Statements @@ -14,6 +15,9 @@ using System.Collections; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public sealed class EffectTechniqueCollection : IEnumerable, IEnumerable { #region Private Members diff --git a/ANX.Framework/Graphics/FillMode.cs b/ANX.Framework/Graphics/FillMode.cs index 36c1aebe..b1f831ea 100644 --- a/ANX.Framework/Graphics/FillMode.cs +++ b/ANX.Framework/Graphics/FillMode.cs @@ -2,8 +2,12 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public enum FillMode { Solid, diff --git a/ANX.Framework/Graphics/GraphicsAdapter.cs b/ANX.Framework/Graphics/GraphicsAdapter.cs index de0fa318..1ad38ff7 100644 --- a/ANX.Framework/Graphics/GraphicsAdapter.cs +++ b/ANX.Framework/Graphics/GraphicsAdapter.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using ANX.Framework.NonXNA; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -10,6 +11,9 @@ using ANX.Framework.NonXNA; namespace ANX.Framework.Graphics { + [PercentageComplete(75)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public sealed class GraphicsAdapter { public static ReadOnlyCollection Adapters diff --git a/ANX.Framework/Graphics/GraphicsDevice.cs b/ANX.Framework/Graphics/GraphicsDevice.cs index 05f71e00..b97c8e01 100644 --- a/ANX.Framework/Graphics/GraphicsDevice.cs +++ b/ANX.Framework/Graphics/GraphicsDevice.cs @@ -2,6 +2,7 @@ using System; using System.Runtime.InteropServices; using ANX.Framework.NonXNA; using ANX.Framework.NonXNA.RenderSystem; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -9,7 +10,10 @@ using ANX.Framework.NonXNA.RenderSystem; namespace ANX.Framework.Graphics { - public class GraphicsDevice : IDisposable + [PercentageComplete(75)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public class GraphicsDevice : IDisposable { #region Private Members private IndexBuffer indexBuffer; diff --git a/ANX.Framework/Graphics/GraphicsDeviceStatus.cs b/ANX.Framework/Graphics/GraphicsDeviceStatus.cs index 066b4017..5086fcc8 100644 --- a/ANX.Framework/Graphics/GraphicsDeviceStatus.cs +++ b/ANX.Framework/Graphics/GraphicsDeviceStatus.cs @@ -2,8 +2,12 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public enum GraphicsDeviceStatus { Normal, diff --git a/ANX.Framework/Graphics/GraphicsProfile.cs b/ANX.Framework/Graphics/GraphicsProfile.cs index c2488dda..fb27e2e5 100644 --- a/ANX.Framework/Graphics/GraphicsProfile.cs +++ b/ANX.Framework/Graphics/GraphicsProfile.cs @@ -2,8 +2,12 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public enum GraphicsProfile { Reach, diff --git a/ANX.Framework/Graphics/GraphicsResource.cs b/ANX.Framework/Graphics/GraphicsResource.cs index 63b58ac6..9c73efc7 100644 --- a/ANX.Framework/Graphics/GraphicsResource.cs +++ b/ANX.Framework/Graphics/GraphicsResource.cs @@ -1,6 +1,7 @@ using System; using System.Runtime.InteropServices; using ANX.Framework.NonXNA; +using ANX.Framework.NonXNA.Development; // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -8,7 +9,10 @@ using ANX.Framework.NonXNA; namespace ANX.Framework.Graphics { - public abstract class GraphicsResource : IDisposable + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] + public abstract class GraphicsResource : IDisposable { public event EventHandler Disposing; diff --git a/ANX.Framework/Graphics/IDynamicGraphicsResource.cs b/ANX.Framework/Graphics/IDynamicGraphicsResource.cs index b68d889f..c2d32f6e 100644 --- a/ANX.Framework/Graphics/IDynamicGraphicsResource.cs +++ b/ANX.Framework/Graphics/IDynamicGraphicsResource.cs @@ -8,6 +8,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Graphics { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] internal interface IDynamicGraphicsResource { diff --git a/ANX.Framework/Graphics/IndexElementSize.cs b/ANX.Framework/Graphics/IndexElementSize.cs index 1b89be56..f7b6b220 100644 --- a/ANX.Framework/Graphics/IndexElementSize.cs +++ b/ANX.Framework/Graphics/IndexElementSize.cs @@ -2,8 +2,12 @@ // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license +using ANX.Framework.NonXNA.Development; namespace ANX.Framework.Graphics { + [PercentageComplete(100)] + [Developer("Glatzemann")] + [TestState(TestStateAttribute.TestState.Untested)] public enum IndexElementSize { SixteenBits, diff --git a/ANX.Framework/GraphicsDeviceManager.cs b/ANX.Framework/GraphicsDeviceManager.cs index 4e8c37d2..da2f9b58 100644 --- a/ANX.Framework/GraphicsDeviceManager.cs +++ b/ANX.Framework/GraphicsDeviceManager.cs @@ -1,8 +1,12 @@ +#region Using Statements using System; using System.Collections.Generic; using System.IO; using ANX.Framework.Graphics; using ANX.Framework.NonXNA; +using ANX.Framework.NonXNA.Development; + +#endregion // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. @@ -10,6 +14,7 @@ using ANX.Framework.NonXNA; namespace ANX.Framework { + [Developer("Glatzemann")] public class GraphicsDeviceManager : IGraphicsDeviceManager, IDisposable, IGraphicsDeviceService { #region Constants diff --git a/ANX.Framework/LaunchParameters.cs b/ANX.Framework/LaunchParameters.cs index 50d80d28..19a8361f 100644 --- a/ANX.Framework/LaunchParameters.cs +++ b/ANX.Framework/LaunchParameters.cs @@ -9,7 +9,7 @@ namespace ANX.Framework { [PercentageComplete(100)] [TestState(TestStateAttribute.TestState.Untested)] - [Developer("???")] + [Developer("Glatzemann")] public class LaunchParameters : Dictionary { } diff --git a/ANX.Framework/PlaneIntersectionType.cs b/ANX.Framework/PlaneIntersectionType.cs index 53c16421..add70844 100644 --- a/ANX.Framework/PlaneIntersectionType.cs +++ b/ANX.Framework/PlaneIntersectionType.cs @@ -1,5 +1,9 @@ +#region Using Statements +using System; using ANX.Framework.NonXNA.Development; +#endregion + // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license @@ -7,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum PlaneIntersectionType { diff --git a/ANX.Framework/PlayerIndex.cs b/ANX.Framework/PlayerIndex.cs index 8df51f92..aec43959 100644 --- a/ANX.Framework/PlayerIndex.cs +++ b/ANX.Framework/PlayerIndex.cs @@ -1,5 +1,9 @@ +#region Using Statements +using System; using ANX.Framework.NonXNA.Development; +#endregion + // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license @@ -7,6 +11,7 @@ using ANX.Framework.NonXNA.Development; namespace ANX.Framework { [PercentageComplete(100)] + [Developer("Glatzemann")] [TestState(TestStateAttribute.TestState.Tested)] public enum PlayerIndex { diff --git a/ANX.Framework/PreparingDeviceSettingsEventArgs.cs b/ANX.Framework/PreparingDeviceSettingsEventArgs.cs index a56cb6d5..1e165ccf 100644 --- a/ANX.Framework/PreparingDeviceSettingsEventArgs.cs +++ b/ANX.Framework/PreparingDeviceSettingsEventArgs.cs @@ -1,6 +1,9 @@ +#region Using Statements using System; using ANX.Framework.NonXNA.Development; +#endregion + // This file is part of the ANX.Framework created by the // "ANX.Framework developer group" and released under the Ms-PL license. // For details see: http://anxframework.codeplex.com/license @@ -9,7 +12,7 @@ namespace ANX.Framework { [PercentageComplete(100)] [TestState(TestStateAttribute.TestState.Untested)] - [Developer("???")] + [Developer("Glatzemann")] public class PreparingDeviceSettingsEventArgs : EventArgs { public GraphicsDeviceInformation GraphicsDeviceInformation