public static void AddPropertySetProperties(WordprocessingDocument document, PropertySet ps, bool book, bool isForAppendix = false) { ArtifactPrinter.AddArtifactContent(document, ps.Artifact, book, isForAppendix); _log.Info("Printing Property Set Properties: " + ps.Artifact.Name); var body = document.MainDocumentPart.Document.Body; var aDef = body.AppendChild(new Paragraph()); var adRun = aDef.AppendChild(new Run()); adRun.AppendChild(new Text("Property Set")); Utils.ApplyStyleToParagraph(document, "Heading1", "Heading1", aDef, JustificationValues.Center); CommonPrinter.BuildPropertiesTable(document, ps.Properties, book); if (!book) { return; } var pageBreak = body.AppendChild(new Paragraph()); var pbr = pageBreak.AppendChild(new Run()); pbr.AppendChild(new Text("")); if (pageBreak.ParagraphProperties == null) { pageBreak.ParagraphProperties = new ParagraphProperties(); } pageBreak.ParagraphProperties.PageBreakBefore = new PageBreakBefore(); }
public static void AddBehaviorSpecification(WordprocessingDocument document, BehaviorSpecification behavior) { _log.Info("Printing Behavior Properties: " + behavior.Artifact.Name); var body = document.MainDocumentPart.Document.Body; var aDef = body.AppendChild(new Paragraph()); var adRun = aDef.AppendChild(new Run()); adRun.AppendChild(new Text("Specification Behavior")); Utils.ApplyStyleToParagraph(document, "Heading2", "Heading2", aDef); ArtifactPrinter.AddBehaviorArtifactSpecification(document, behavior.Artifact); ArtifactPrinter.AddArtifactContent(document, behavior.Artifact, false, false, true); var basicProps = new[, ] { { "Is External:", behavior.IsExternal.ToString() }, { "Constructor:", behavior.ConstructorType } }; Utils.AddTable(document, basicProps); //"PlainTable3" CommonPrinter.BuildInvocationBindingsTable(document, behavior.Invocations, behavior.Artifact.Name); var bProps = behavior.Properties.ToArray(); if (bProps.Length > 0) { CommonPrinter.BuildPropertiesTable(document, behavior.Properties, false); } }
public static void PrintBehavior(WordprocessingDocument document, Model.Core.Behavior behavior, bool book, bool isForAppendix = false) { ArtifactPrinter.AddArtifactContent(document, behavior.Artifact, book, isForAppendix); _log.Info("Printing Behavior Properties: " + behavior.Artifact.Name); var body = document.MainDocumentPart.Document.Body; var aDef = body.AppendChild(new Paragraph()); var adRun = aDef.AppendChild(new Run()); adRun.AppendChild(new Text("Behavior Details")); Utils.ApplyStyleToParagraph(document, "Heading1", "Heading1", aDef, JustificationValues.Center); var basicProps = new[, ] { { "Is External:", behavior.IsExternal.ToString() }, { "Constructor:", behavior.ConstructorType } }; Utils.AddTable(document, basicProps); //"PlainTable3" CommonPrinter.BuildInvocationsTable(document, behavior.Invocations); if (behavior.Properties.Any()) { CommonPrinter.BuildPropertiesTable(document, behavior.Properties, book); } }
public static void AddPropertySetSpecification(WordprocessingDocument document, PropertySetSpecification ps) { ArtifactPrinter.AddArtifactContent(document, ps.Artifact, false, true); _log.Info("Printing Property Set Specification Properties: " + ps.Artifact.Name); var body = document.MainDocumentPart.Document.Body; var aDef = body.AppendChild(new Paragraph()); var adRun = aDef.AppendChild(new Run()); adRun.AppendChild(new Text("Property Set Details")); Utils.ApplyStyleToParagraph(document, "Heading2", "Heading2", aDef); CommonPrinter.BuildPropertySpecificationTable(document, ps.Properties); }
public static void AddBehaviorReferenceProperties(WordprocessingDocument document, BehaviorReference behavior) { _log.Info("Printing Behavior Properties: " + behavior.Reference.Id); var body = document.MainDocumentPart.Document.Body; var name = Utils.GetNameForId(behavior.Reference.Id, ArtifactType.Behavior); var aDef = body.AppendChild(new Paragraph()); var adRun = aDef.AppendChild(new Run()); adRun.AppendChild(new Text("Behavior Reference: " + name)); Utils.ApplyStyleToParagraph(document, "Heading2", "Heading2", aDef); var rDef = body.AppendChild(new Paragraph()); var rRun = rDef.AppendChild(new Run()); rRun.AppendChild(new Text("Reference Notes: " + behavior.Reference.ReferenceNotes)); Utils.ApplyStyleToParagraph(document, "Quote", "Quote", rDef); var basicProps = new[, ] { { "Is External:", behavior.IsExternal.ToString() }, { "Constructor:", behavior.ConstructorType } }; Utils.AddTable(document, basicProps); //"PlainTable3" var appDef = body.AppendChild(new Paragraph()); var appRun = appDef.AppendChild(new Run()); appRun.AppendChild(new Text("Applies To")); Utils.ApplyStyleToParagraph(document, "Heading3", "Heading3", appDef); foreach (var a in behavior.AppliesTo) { ArtifactPrinter.GenerateArtifactSymbol(document, a); } CommonPrinter.BuildInvocationsTable(document, behavior.Invocations); CommonPrinter.BuildInfluenceBindings(document, behavior.InfluenceBindings, ArtifactType.Behavior); if (behavior.Properties.Any()) { CommonPrinter.BuildPropertiesTable(document, behavior.Properties, false); } }
public static void PrintDefinition(WordprocessingDocument document, TemplateDefinition definition, bool book, bool isForAppendix = false) { ArtifactPrinter.AddArtifactContent(document, definition.Artifact, book, isForAppendix); _log.Info("Printing Template Definition Properties: " + definition.Artifact.Name); var body = document.MainDocumentPart.Document.Body; var aDef = body.AppendChild(new Paragraph()); var adRun = aDef.AppendChild(new Run()); adRun.AppendChild(new Text("Template Definition")); Utils.ApplyStyleToParagraph(document, "Heading1", "Heading1", aDef, JustificationValues.Center); var tDef = body.AppendChild(new Paragraph()); var tRun = tDef.AppendChild(new Run()); var formulaName = Utils.GetNameForId(definition.FormulaReference.Id, ArtifactType.TemplateFormula); tRun.AppendChild(new Text("Template Formula Reference: " + formulaName)); Utils.ApplyStyleToParagraph(document, "Heading2", "Heading2", tDef); ArtifactPrinter.AddArtifactReference(document, definition.FormulaReference); BasePrinter.AddBaseReference(document, definition.TokenBase); var beDef = body.AppendChild(new Paragraph()); var beRun = beDef.AppendChild(new Run()); beRun.AppendChild(new Text("Behaviors")); Utils.ApplyStyleToParagraph(document, "Heading1", "Heading1", beDef, JustificationValues.Center); foreach (var b in definition.Behaviors) { BehaviorPrinter.AddBehaviorReferenceProperties(document, b); var bbDef = body.AppendChild(new Paragraph()); var bbRun = bbDef.AppendChild(new Run()); bbRun.AppendChild(new Text("")); Utils.ApplyStyleToParagraph(document, "Normal", "Normal", bbDef, JustificationValues.Center); } var bgDef = body.AppendChild(new Paragraph()); var bgRun = bgDef.AppendChild(new Run()); bgRun.AppendChild(new Text("Behavior Groups")); Utils.ApplyStyleToParagraph(document, "Heading2", "Heading2", bgDef, JustificationValues.Center); foreach (var bg in definition.BehaviorGroups) { ArtifactPrinter.AddArtifactReference(document, bg.Reference); foreach (var b in bg.BehaviorArtifacts) { var bbeDef = body.AppendChild(new Paragraph()); var bbeRun = bbeDef.AppendChild(new Run()); bbeRun.AppendChild(new Text("Behavior")); Utils.ApplyStyleToParagraph(document, "Heading2", "Heading2", bbeDef); BehaviorPrinter.AddBehaviorReferenceProperties(document, b); } } var pDef = body.AppendChild(new Paragraph()); var pRun = pDef.AppendChild(new Run()); pRun.AppendChild(new Text("Property Sets")); Utils.ApplyStyleToParagraph(document, "Heading2", "Heading2", pDef, JustificationValues.Center); foreach (var p in definition.PropertySets) { ArtifactPrinter.AddArtifactReference(document, p.Reference); var bbDef = body.AppendChild(new Paragraph()); var bbRun = bbDef.AppendChild(new Run()); bbRun.AppendChild(new Text("")); Utils.ApplyStyleToParagraph(document, "Heading2", "Heading2", bbDef, JustificationValues.Center); CommonPrinter.BuildPropertiesTable(document, p.Properties, false); } var cDef = body.AppendChild(new Paragraph()); var cRun = cDef.AppendChild(new Run()); cRun.AppendChild(new Text("Child Tokens")); Utils.ApplyStyleToParagraph(document, "Heading2", "Heading2", cDef, JustificationValues.Center); foreach (var c in definition.ChildTokens) { PrintDefinition(document, c, false); Utils.InsertSpacer(document); } if (!book) { return; } var pageBreak = body.AppendChild(new Paragraph()); var pbr = pageBreak.AppendChild(new Run()); pbr.AppendChild(new Text("")); if (pageBreak.ParagraphProperties == null) { pageBreak.ParagraphProperties = new ParagraphProperties(); } pageBreak.ParagraphProperties.PageBreakBefore = new PageBreakBefore(); Utils.ApplyStyleToParagraph(document, "Normal", "Normal", pageBreak); }