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/EnumerationFileJava.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'Software/Visual_Studio/Tango.CodeGeneration/EnumerationFileJava.cs') diff --git a/Software/Visual_Studio/Tango.CodeGeneration/EnumerationFileJava.cs b/Software/Visual_Studio/Tango.CodeGeneration/EnumerationFileJava.cs index 6a42326f7..205e528df 100644 --- a/Software/Visual_Studio/Tango.CodeGeneration/EnumerationFileJava.cs +++ b/Software/Visual_Studio/Tango.CodeGeneration/EnumerationFileJava.cs @@ -6,12 +6,25 @@ using System.Threading.Tasks; namespace Tango.CodeGeneration { + /// + /// Represents a Java enumeration file. + /// + /// public class EnumerationFileJava : CodeFile { + /// + /// Gets or sets the enum name. + /// public String Name { get; set; } + /// + /// Gets or sets the collection of enum fields. + /// public List Fields { get; set; } + /// + /// Initializes a new instance of the class. + /// public EnumerationFileJava() { Fields = new List(); -- cgit v1.3.1