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-05 18:58:01 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2017-11-05 18:58:01 +0200
commit26298fa2aeb11f2c5678a05defa05d5cc0ef1d4f (patch)
tree9425b67bcbabfb995310bd5a18ad121d1b7fc65d /Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs
parentf08f7354a85effcba1f5ecf15da244bddb5c03a3 (diff)
downloadTango-26298fa2aeb11f2c5678a05defa05d5cc0ef1d4f.tar.gz
Tango-26298fa2aeb11f2c5678a05defa05d5cc0ef1d4f.zip
Implemented precise package names for Java compiler using a new 'UseDefaultStructure' property for all compilers!
Diffstat (limited to 'Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs')
-rw-r--r--Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs b/Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs
index 78d754aa5..55f0cf77f 100644
--- a/Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs
+++ b/Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs
@@ -1,8 +1,11 @@
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
{
@@ -25,5 +28,10 @@ namespace Tango.Protobuf.Compilers
{
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;
}
}