diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2017-11-05 18:58:01 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2017-11-05 18:58:01 +0200 |
| commit | 26298fa2aeb11f2c5678a05defa05d5cc0ef1d4f (patch) | |
| tree | 9425b67bcbabfb995310bd5a18ad121d1b7fc65d /Software/Visual Studio/Tango.Protobuf/Compilers/JavaCompiler.cs | |
| parent | f08f7354a85effcba1f5ecf15da244bddb5c03a3 (diff) | |
| download | Tango-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.cs | 8 |
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; } } |
