You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/DOM/Model/Flow/Section.cs

50 lines
1.2 KiB

using DOM.Services;
using System.Collections.Generic;
using ZeroLevel.Services.Serialization;
namespace ZeroLevel.DocumentObjectModel.Flow
{
/// <summary>
/// Логически завершенный информационный блок
/// </summary>
public class Section :
ContentElement
{
public List<IContentElement> Parts;
public Section() : base(ContentElementType.Section)
{
Initialize();
}
public Section(IBinaryReader reader) :
base(ContentElementType.Section)
{
Deserialize(reader);
}
private void Initialize()
{
Parts = new List<IContentElement>();
}
public Section Append(ContentElement part)
{
Parts.Add(part);
return this;
}
#region Serialization
public override void Serialize(IBinaryWriter writer)
{
ContentElementSerializer.WriteCollection(writer, this.Parts);
}
public override void Deserialize(IBinaryReader reader)
{
this.Parts = ContentElementSerializer.ReadCollection(reader);
}
#endregion
}
}

Powered by TurnKey Linux.