From d1e8b5dc2cfa93bf042773b4bf04a0f0bfc1f53d Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Mon, 8 Jan 2018 15:28:10 +0200 Subject: Added code comments for: CodeGeneration. Core. --- .../Tango.CodeGeneration/EntityCodeFileJava.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs b/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs index d2bfd80fc..194cd0fc1 100644 --- a/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs +++ b/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs @@ -6,14 +6,31 @@ using System.Threading.Tasks; namespace Tango.CodeGeneration { + /// + /// Represents a database entity Java code file. + /// + /// public class EntityCodeFileJava : Class { + /// + /// Gets or sets the name of the entity. + /// public String EntityName { get; set; } + /// + /// Gets or sets the name of the table. + /// public String TableName { get; set; } + /// + /// Gets or sets the table fields. + /// public List Fields { get; set; } + /// + /// Initializes a new instance of the class. + /// + /// The code file name. public EntityCodeFileJava(String name) : base(name) { Fields = new List(); -- cgit v1.3.1