예제 #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);
 }