diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-08 15:28:10 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-08 15:28:10 +0200 |
| commit | d1e8b5dc2cfa93bf042773b4bf04a0f0bfc1f53d (patch) | |
| tree | 1bcd27f1461650204ba2e7b340f271ce703b1a41 /Software/Visual_Studio/Tango.CodeGeneration/TangoDAOJavaFile.cs | |
| parent | 0ec56a54ca0c64a2f7ba402a1b99b3c217cd5ae5 (diff) | |
| download | Tango-d1e8b5dc2cfa93bf042773b4bf04a0f0bfc1f53d.tar.gz Tango-d1e8b5dc2cfa93bf042773b4bf04a0f0bfc1f53d.zip | |
Added code comments for:
CodeGeneration.
Core.
Diffstat (limited to 'Software/Visual_Studio/Tango.CodeGeneration/TangoDAOJavaFile.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.CodeGeneration/TangoDAOJavaFile.cs | 22 |
1 files changed, 22 insertions, 0 deletions
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 { + /// <summary> + /// Represents the Tango DAO Java code file. + /// </summary> + /// <seealso cref="Tango.CodeGeneration.CodeFile" /> public class TangoDAOJavaFile : CodeFile { + /// <summary> + /// Gets or sets the class name. + /// </summary> public String Name { get; set; } + /// <summary> + /// Gets or sets the entities. + /// </summary> public List<TangoDAOEntity> Entities { get; set; } + /// <summary> + /// Initializes a new instance of the <see cref="TangoDAOJavaFile"/> class. + /// </summary> public TangoDAOJavaFile() { Entities = new List<TangoDAOEntity>(); } + /// <summary> + /// Represents a Tango DAO Java entity. + /// </summary> public class TangoDAOEntity { + /// <summary> + /// Gets or sets the entity name. + /// </summary> public String Name { get; set; } + + /// <summary> + /// Gets or sets the name of the table. public String TableName { get; set; } } } |
