| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435 |
- //
- // System.Xml.XmlSerializerTestClasses
- //
- // Author:
- // Erik LeBel <[email protected]>
- //
- // (C) 2003 Erik LeBel
- //
- // Classes to use in the testing of the XmlSerializer
- //
- using System;
- using System.ComponentModel;
- using System.Collections;
- using System.Xml.Serialization;
- using System.Xml;
- namespace MonoTests.System.Xml.TestClasses
- {
- public enum SimpleEnumeration { FIRST, SECOND };
- [Flags]
- public enum EnumDefaultValue { e1 = 1, e2 = 2, e3 = 3 }
- public enum EnumDefaultValueNF { e1 = 1, e2 = 2, e3 = 3 }
-
- public class SimpleClass
- {
- public string something = null;
- }
- public class StringCollection : CollectionBase
- {
- public void Add (String parameter)
- {
- List.Insert (Count, parameter);
- }
-
- public String this [int index]
- {
- get
- {
- if (index < 0 || index > Count)
- throw new ArgumentOutOfRangeException ();
-
- return (String) List [index];
- }
- set { List [index] = value; }
- }
- }
-
- public class StringCollectionContainer
- {
- StringCollection messages = new StringCollection();
-
- public StringCollection Messages
- {
- get { return messages; }
- }
- }
- public class ArrayContainer
- {
- public object [] items = null;
- }
-
- public class ClassArrayContainer
- {
- public SimpleClass [] items = null;
- }
-
- [XmlRoot("simple")]
- public class SimpleClassWithXmlAttributes
- {
- [XmlAttribute("member")]
- public string something = null;
- }
-
- [XmlRoot("field")]
- public class Field
- {
- [XmlAttribute("modifiers")]
- public MapModifiers Modifiers;
- }
- [Flags]
- public enum MapModifiers
- {
- [XmlEnum("public")]
- Public = 0,
- [XmlEnum("protected")]
- Protected = 1,
- }
-
- public class MyList : ArrayList
- {
- object container;
-
- // NOTE: MyList has no public constructor
- public MyList (object container) : base()
- {
- this.container = container;
- }
- }
-
- public class Container
- {
- public MyList Items;
-
- public Container () {
- Items = new MyList(this);
- }
- }
-
- public class Container2
- {
- public MyList Items;
-
- public Container2 () {
- }
-
- public Container2 (bool b) {
- Items = new MyList(this);
- }
- }
- public class MyElem: XmlElement
- {
- public MyElem (XmlDocument doc): base ("","myelem","", doc)
- {
- SetAttribute ("aa","1");
- }
- [XmlAttribute]
- public int kk=1;
- }
- public class MyDocument: XmlDocument
- {
- public MyDocument ()
- {
- }
- [XmlAttribute]
- public int kk=1;
- }
-
- public class CDataContainer
- {
- public XmlCDataSection cdata;
- }
-
- public class NodeContainer
- {
- public XmlNode node;
- }
-
- public class Choices
- {
- [XmlElementAttribute("ChoiceZero", typeof(string), IsNullable=false)]
- [XmlElementAttribute("ChoiceOne", typeof(string), IsNullable=false)]
- [XmlElementAttribute("ChoiceTwo", typeof(string), IsNullable=false)]
- [XmlChoiceIdentifier("ItemType")]
- public string MyChoice;
- [XmlIgnore]
- public ItemChoiceType ItemType;
- }
-
- [XmlType(IncludeInSchema = false)]
- public enum ItemChoiceType
- {
- ChoiceZero,
- [XmlEnum ("ChoiceOne")]
- StrangeOne,
- ChoiceTwo,
- }
-
- public class WrongChoices
- {
- [XmlElementAttribute("ChoiceZero", typeof(string), IsNullable=false)]
- [XmlElementAttribute("StrangeOne", typeof(string), IsNullable=false)]
- [XmlElementAttribute("ChoiceTwo", typeof(string), IsNullable=false)]
- [XmlChoiceIdentifier("ItemType")]
- public string MyChoice;
- [XmlIgnore]
- public ItemChoiceType ItemType;
- }
-
- [XmlType ("Type with space")]
- public class TestSpace
- {
- [XmlElement (ElementName = "Element with space")]
- public int elem;
-
- [XmlAttribute (AttributeName = "Attribute with space")]
- public int attr;
- }
- [Serializable]
- public class ReadOnlyProperties {
- string[] strArr = new string[2] { "string1", "string2" };
- public string[] StrArr {
- get { return strArr; }
- }
-
- public string dat {
- get { return "fff"; }
- }
- }
-
- [XmlRoot("root")]
- public class ListDefaults
- {
- public ListDefaults ()
- {
- ed = new SimpleClass ();
- str = "hola";
- }
-
- public ArrayList list2;
-
- public MyList list3;
-
- public string[] list4;
-
- [XmlElement("e", typeof(SimpleClass))]
- public ArrayList list5;
-
- [DefaultValue (null)]
- public SimpleClass ed;
-
- [DefaultValue (null)]
- public string str;
- }
-
- public class clsPerson
- {
- public IList EmailAccounts;
- }
-
- public class ArrayClass
- {
- public object names = new object[] { "un","dos" };
- }
-
- public class CompositeValueType
- {
- public void Init ()
- {
- Items = new object[] { 1, 2 };
- ItemsElementName = new ItemsChoiceType[] { ItemsChoiceType.In, ItemsChoiceType.Es };
- }
-
- [XmlElementAttribute("Es", typeof(int))]
- [XmlElementAttribute("In", typeof(int))]
- [XmlChoiceIdentifierAttribute("ItemsElementName")]
- public object[] Items;
-
- [XmlElementAttribute("ItemsElementName")]
- [XmlIgnoreAttribute()]
- public ItemsChoiceType[] ItemsElementName;
- }
- public enum ItemsChoiceType {
- In, Es
- }
-
- public class ArrayAttributeWithType
- {
- [XmlAttribute (DataType="anyURI")]
- public string[] at = new string [] { "a","b" };
- [XmlAttribute (DataType="base64Binary")]
- public byte[][] bin1 = new byte[][] { new byte[]{1,2}, new byte[]{1,2}};
-
- [XmlAttribute (DataType="base64Binary")]
- public byte[] bin2 = new byte[] { 1,2 };
- }
-
- public class ArrayAttributeWithWrongType
- {
- [XmlAttribute (DataType="int")]
- public string[] at = new string [] { "a","b" };
- }
-
- [XmlType ("Container")]
- public class EntityContainer
- {
- EntityCollection collection1;
- EntityCollection collection2;
- EntityCollection collection3 = new EntityCollection ("root");
- EntityCollection collection4 = new EntityCollection ("root");
-
- [XmlArray (IsNullable=true)]
- public EntityCollection Collection1 {
- get { return collection1; }
- set { collection1 = value; collection1.Container = "assigned"; }
- }
-
- [XmlArray (IsNullable=false)]
- public EntityCollection Collection2 {
- get { return collection2; }
- set { collection2 = value; collection2.Container = "assigned"; }
- }
-
- [XmlArray (IsNullable=true)]
- public EntityCollection Collection3 {
- get { return collection3; }
- set { collection3 = value; collection3.Container = "assigned"; }
- }
-
- [XmlArray (IsNullable=false)]
- public EntityCollection Collection4 {
- get { return collection4; }
- set { collection4 = value; collection4.Container = "assigned"; }
- }
- }
-
- [XmlType ("Container")]
- public class ArrayEntityContainer
- {
- Entity[] collection1;
- Entity[] collection2;
- Entity[] collection3 = new Entity [0];
- Entity[] collection4 = new Entity [0];
-
- [XmlArray (IsNullable=true)]
- public Entity[] Collection1 {
- get { return collection1; }
- set { collection1 = value; }
- }
-
- [XmlArray (IsNullable=false)]
- public Entity[] Collection2 {
- get { return collection2; }
- set { collection2 = value; }
- }
-
- [XmlArray (IsNullable=true)]
- public Entity[] Collection3 {
- get { return collection3; }
- set { collection3 = value; }
- }
-
- [XmlArray (IsNullable=false)]
- public Entity[] Collection4 {
- get { return collection4; }
- set { collection4 = value; }
- }
- }
-
- public class Entity
- {
- private string _name = string.Empty;
- private string _parent = null;
- [XmlAttribute]
- public string Name {
- get { return _name; }
- set { _name = value; }
- }
- [XmlIgnore]
- public string Parent {
- get { return _parent; }
- set { _parent = value; }
- }
- }
- public class EntityCollection : ArrayList
- {
- public string _container;
- public EntityCollection ()
- {
- }
- public EntityCollection (string c)
- {
- _container = c;
- }
- public string Container {
- get { return _container; }
- set { _container = value; }
- }
- public int Add (Entity value)
- {
- if(_container != null)
- value.Parent = _container;
- return base.Add(value);
- }
- public new Entity this[int index]
- {
- get { return (Entity) base[index]; }
- set { base[index] = value; }
- }
- }
-
- [XmlType ("Container")]
- public class ObjectWithReadonlyCollection
- {
- EntityCollection collection1 = new EntityCollection ("root");
-
- public EntityCollection Collection1 {
- get { return collection1; }
- }
- }
-
- [XmlType ("Container")]
- public class ObjectWithReadonlyNulCollection
- {
- EntityCollection collection1;
-
- public EntityCollection Collection1 {
- get { return collection1; }
- }
- }
-
- [XmlType ("Container")]
- public class ObjectWithReadonlyArray
- {
- Entity[] collection1 = new Entity [0];
-
- public Entity[] Collection1 {
- get { return collection1; }
- }
- }
- }
|