Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/IO/NML/DefaultType.cs @ 3757

Last change on this file since 3757 was 2769, checked in by mkommend, 14 years ago

added unused files for netron (ticket #867)

File size: 862 bytes
Line 
1
2    using System;
3    using System.Xml;
4    using System.Xml.Serialization;
5    using System.IO;
6   
7   
8namespace Netron.GraphLib.IO.NML {   
9   
10  /// <summary>
11  /// XML wrapper for a default
12  /// </summary>
13    [XmlType(IncludeInSchema=true, TypeName="default.type")]
14    [XmlRoot(ElementName="default", IsNullable=false, DataType="")]
15    public class DefaultType {       
16       
17    /// <summary>
18    /// the text
19    /// </summary>
20        private DataCollection mText = new DataCollection();
21        /// <summary>
22        /// Gets or sets the text
23        /// </summary>
24        [XmlText(Type=typeof(string))]
25        public virtual DataCollection Text {
26            get {
27                return this.mText;
28            }
29            set {
30                this.mText = value;
31            }
32        }
33       
34
35    }
36}
Note: See TracBrowser for help on using the repository browser.