コード例 #1
0
ファイル: Template.cs プロジェクト: Maynek/Notesvel
        //================================
        // Override Methods
        //================================
        public override void AppendInformation(InformationBuilder builder)
        {
            base.AppendInformation(builder);
            builder.AppendIndentedLine("FilePath=" + this.Path);

            foreach (var p in this.ReplaceCommands)
            {
                builder.AppendIndentedLine("To=" + p.Key + ", Value= " + p.Value);
            }
        }
コード例 #2
0
 //================================
 // Override Methods
 //================================
 public override void AppendInformation(InformationBuilder builder)
 {
     base.AppendInformation(builder);
     builder.AppendIndentedLine("FilePath=" + this.Path);
 }
コード例 #3
0
ファイル: Element.cs プロジェクト: Maynek/Notesvel
 public virtual void AppendInformation(InformationBuilder builder)
 {
     builder.AppendLine("*" + this.GetType().Name + "(" + this.Id + ")");
     builder.AppendIndentedLine("Name=" + this.Name);
 }
コード例 #4
0
ファイル: Content.cs プロジェクト: Maynek/Notesvel
 protected void AppendMyInformation(InformationBuilder builder)
 {
     builder.AppendLine("*" + this.GetType().Name + "(" + this.Id + ") Index=" + this.Index.ToString());
     builder.AppendIndentedLine("Label=" + this.Label);
     builder.AppendIndentedLine("Name=" + this.Name);
 }
コード例 #5
0
ファイル: WebPage.cs プロジェクト: Maynek/Notesvel
 //================================
 // Override Methods
 //================================
 public override void AppendInformation(InformationBuilder builder)
 {
     base.AppendInformation(builder);
     builder.AppendIndentedLine("Url=" + this.Url);
     builder.AppendIndentedLine("TemplateId=" + this.TemplateId);
 }