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/TangoDAOJavaFile.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'Software/Visual_Studio/Tango.CodeGeneration/TangoDAOJavaFile.cs') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/TangoDAOJavaFile.cs b/Software/Visual_Studio/Tango.CodeGeneration/TangoDAOJavaFile.cs index 5221365e4..566f13311 100644 --- a/Software/Visual_Studio/Tango.CodeGeneration/TangoDAOJavaFile.cs +++ b/Software/Visual_Studio/Tango.CodeGeneration/TangoDAOJavaFile.cs @@ -6,20 +6,42 @@ using System.Threading.Tasks; namespace Tango.CodeGeneration { + /// + /// Represents the Tango DAO Java code file. + /// + /// public class TangoDAOJavaFile : CodeFile { + /// + /// Gets or sets the class name. + /// public String Name { get; set; } + /// + /// Gets or sets the entities. + /// public List Entities { get; set; } + /// + /// Initializes a new instance of the class. + /// public TangoDAOJavaFile() { Entities = new List(); } + /// + /// Represents a Tango DAO Java entity. + /// public class TangoDAOEntity { + /// + /// Gets or sets the entity name. + /// public String Name { get; set; } + + /// + /// Gets or sets the name of the table. public String TableName { get; set; } } } -- cgit v1.3.1