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/DataExtensionType.cs @ 2769

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

added unused files for netron (ticket #867)

File size: 680 bytes
Line 
1    using System;
2    using System.Xml;
3    using System.Xml.Serialization;
4    using System.IO;
5    namespace Netron.GraphLib.IO.GraphML {
6  /// <summary>
7  ///
8  /// </summary>
9    [XmlType(IncludeInSchema=true, TypeName="data-extension.type")]
10    [XmlRoot(ElementName="dataextensiontype")]
11    public class DataExtensionType {
12       
13    private DataCollection _text = new DataCollection();
14       
15        [XmlText(Type=typeof(string))]
16        public virtual DataCollection Text {
17            get {
18                return this._text;
19            }
20            set {
21                this._text = value;
22            }
23        }
24       
25   
26    }
27}
Note: See TracBrowser for help on using the repository browser.