aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2017-11-16 13:38:56 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2017-11-16 13:38:56 +0200
commit914f4db513477d9aff726546bac47545195a3e37 (patch)
treed2ff190fd84b1dfaa03eec76563c431592ece7ff /Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs
parent65d01ff549d80fbe13ff5e966df216c9f7c03653 (diff)
downloadTango-914f4db513477d9aff726546bac47545195a3e37.tar.gz
Tango-914f4db513477d9aff726546bac47545195a3e37.zip
Rename "Visual Studio" to "Visual_Studio"
Rename "External Repositories" to "External_Repositories".
Diffstat (limited to 'Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs')
-rw-r--r--Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs b/Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs
deleted file mode 100644
index 55f0cf77f..000000000
--- a/Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Tango.Core.Helpers;
-using Tango.Logging;
-
-namespace Tango.Protobuf.Compilers
-{
- /// <summary>
- /// Represents a protobuf Java Compiler.
- /// </summary>
- /// <seealso cref="Tango.Protobuf.ProtoCompiler" />
- public class JavaCompiler : ProtoCompiler
- {
- /// <summary>
- /// Gets the compiler language.
- /// </summary>
- public override CompilerLanguage Language => CompilerLanguage.Java;
-
- /// <summary>
- /// Gets the protobuf compiler CLI arguments (without input/output files!).
- /// </summary>
- /// <returns></returns>
- protected override string GetProtoArguments()
- {
- return "--java_out";
- }
-
- /// <summary>
- /// Gets a value indicating whether this compiler uses the default folder structure when generating code.
- /// </summary>
- public override bool UsesDefaultStructure => true;
- }
-}