File tree Expand file tree Collapse file tree 17 files changed +29
-28
lines changed 
main/java/uk/co/real_logic/sbe 
test/java/uk/co/real_logic/sbe/generation/java Expand file tree Collapse file tree 17 files changed +29
-28
lines changed Original file line number Diff line number Diff line change 1616package  uk .co .real_logic .sbe .generation ;
1717
1818import  uk .co .real_logic .agrona .concurrent .UnsafeBuffer ;
19+ import  uk .co .real_logic .agrona .generation .PackageOutputManager ;
1920import  uk .co .real_logic .sbe .SbeTool ;
2021import  uk .co .real_logic .sbe .generation .cpp98 .Cpp98Generator ;
2122import  uk .co .real_logic .sbe .generation .cpp98 .NamespaceOutputManager ;
2223import  uk .co .real_logic .sbe .generation .csharp .CSharpGenerator ;
2324import  uk .co .real_logic .sbe .generation .csharp .CSharpNamespaceOutputManager ;
2425import  uk .co .real_logic .sbe .generation .java .JavaGenerator ;
2526import  uk .co .real_logic .sbe .generation .java .JavaMockPojoGenerator ;
26- import  uk .co .real_logic .sbe .generation .java .PackageOutputManager ;
2727import  uk .co .real_logic .sbe .generation .python .ModuleOutputManager ;
2828import  uk .co .real_logic .sbe .generation .python .PythonGenerator ;
2929import  uk .co .real_logic .sbe .ir .Ir ;
Original file line number Diff line number Diff line change 1717
1818import  uk .co .real_logic .sbe .PrimitiveType ;
1919import  uk .co .real_logic .sbe .generation .CodeGenerator ;
20- import  uk .co .real_logic .sbe .generation .OutputManager ;
20+ import  uk .co .real_logic .agrona .generation .OutputManager ;
2121import  uk .co .real_logic .sbe .ir .Encoding ;
2222import  uk .co .real_logic .sbe .ir .Ir ;
2323import  uk .co .real_logic .sbe .ir .Signal ;
2424import  uk .co .real_logic .sbe .ir .Token ;
25- import  uk .co .real_logic .sbe . util .Verify ;
25+ import  uk .co .real_logic .agrona .Verify ;
2626
2727import  java .io .IOException ;
2828import  java .io .Writer ;
Original file line number Diff line number Diff line change 1515 */ 
1616package  uk .co .real_logic .sbe .generation .cpp98 ;
1717
18- import  uk .co .real_logic .sbe .generation .OutputManager ;
19- import  uk .co .real_logic .sbe . util .Verify ;
18+ import  uk .co .real_logic .agrona .generation .OutputManager ;
19+ import  uk .co .real_logic .agrona .Verify ;
2020
2121import  java .io .*;
2222
@@ -29,7 +29,7 @@ public class NamespaceOutputManager implements OutputManager
2929 private  final  File  outputDir ;
3030
3131 /** 
32-  * Create a new {@link uk.co.real_logic.sbe .generation.OutputManager} for generating C++98 source files into a given package. 
32+  * Create a new {@link uk.co.real_logic.agrona .generation.OutputManager} for generating C++98 source files into a given package. 
3333 * 
3434 * @param baseDirectoryName for the generated source code. 
3535 * @param namespaceName for the generated source code relative to the baseDirectoryName. 
Original file line number Diff line number Diff line change 1818import  uk .co .real_logic .sbe .PrimitiveType ;
1919import  uk .co .real_logic .sbe .PrimitiveValue ;
2020import  uk .co .real_logic .sbe .generation .CodeGenerator ;
21- import  uk .co .real_logic .sbe .generation .OutputManager ;
21+ import  uk .co .real_logic .agrona .generation .OutputManager ;
2222import  uk .co .real_logic .sbe .ir .Encoding ;
2323import  uk .co .real_logic .sbe .ir .Ir ;
2424import  uk .co .real_logic .sbe .ir .Signal ;
2525import  uk .co .real_logic .sbe .ir .Token ;
26- import  uk .co .real_logic .sbe . util .Verify ;
26+ import  uk .co .real_logic .agrona .Verify ;
2727
2828import  java .io .IOException ;
2929import  java .io .Writer ;
Original file line number Diff line number Diff line change 1515 */ 
1616package  uk .co .real_logic .sbe .generation .csharp ;
1717
18- import  uk .co .real_logic .sbe .generation .OutputManager ;
19- import  uk .co .real_logic .sbe . util .Verify ;
18+ import  uk .co .real_logic .agrona .generation .OutputManager ;
19+ import  uk .co .real_logic .agrona .Verify ;
2020
2121import  java .io .*;
2222
2323/** 
24-  * {@link uk.co.real_logic.sbe .generation.OutputManager} for managing the creation of C# source files 
24+  * {@link uk.co.real_logic.agrona .generation.OutputManager} for managing the creation of C# source files 
2525 * as the target of code generation. 
2626 * 
2727 * The character encoding for the {@link java.io.Writer} is UTF-8. 
@@ -31,7 +31,7 @@ public class CSharpNamespaceOutputManager implements OutputManager
3131 private  final  File  outputDir ;
3232
3333 /** 
34-  * Create a new {@link uk.co.real_logic.sbe .generation.OutputManager} for generating C# source 
34+  * Create a new {@link uk.co.real_logic.agrona .generation.OutputManager} for generating C# source 
3535 * files into a given package. 
3636 * 
3737 * @param baseDirectoryName for the generated source code. 
Original file line number Diff line number Diff line change 1818import  uk .co .real_logic .agrona .MutableDirectBuffer ;
1919import  uk .co .real_logic .sbe .PrimitiveType ;
2020import  uk .co .real_logic .sbe .generation .CodeGenerator ;
21- import  uk .co .real_logic .sbe .generation .OutputManager ;
21+ import  uk .co .real_logic .agrona .generation .OutputManager ;
2222import  uk .co .real_logic .sbe .ir .Encoding ;
2323import  uk .co .real_logic .sbe .ir .Ir ;
2424import  uk .co .real_logic .sbe .ir .Signal ;
2525import  uk .co .real_logic .sbe .ir .Token ;
26- import  uk .co .real_logic .sbe . util .Verify ;
26+ import  uk .co .real_logic .agrona .Verify ;
2727
2828import  java .io .IOException ;
2929import  java .io .Writer ;
Original file line number Diff line number Diff line change 1717
1818import  uk .co .real_logic .sbe .PrimitiveType ;
1919import  uk .co .real_logic .sbe .generation .CodeGenerator ;
20- import  uk .co .real_logic .sbe .generation .OutputManager ;
20+ import  uk .co .real_logic .agrona .generation .OutputManager ;
2121import  uk .co .real_logic .sbe .ir .Encoding ;
2222import  uk .co .real_logic .sbe .ir .Ir ;
2323import  uk .co .real_logic .sbe .ir .Signal ;
2424import  uk .co .real_logic .sbe .ir .Token ;
25- import  uk .co .real_logic .sbe . util .Verify ;
25+ import  uk .co .real_logic .agrona .Verify ;
2626
2727import  java .io .IOException ;
2828import  java .io .Writer ;
Original file line number Diff line number Diff line change 1515 */ 
1616package  uk .co .real_logic .sbe .generation .python ;
1717
18- import  uk .co .real_logic .sbe .generation .OutputManager ;
19- import  uk .co .real_logic .sbe . util .Verify ;
18+ import  uk .co .real_logic .agrona .generation .OutputManager ;
19+ import  uk .co .real_logic .agrona .Verify ;
2020
2121import  java .io .*;
2222
@@ -29,7 +29,7 @@ public class ModuleOutputManager implements OutputManager
2929 private  final  File  outputDir ;
3030
3131 /** 
32-  * Create a new {@link uk.co.real_logic.sbe .generation.OutputManager} for generating C++98 source files into a given package. 
32+  * Create a new {@link uk.co.real_logic.agrona .generation.OutputManager} for generating C++98 source files into a given package. 
3333 * 
3434 * @param baseDirectoryName for the generated source code. 
3535 * @param namespaceName for the generated source code relative to the baseDirectoryName. 
Original file line number Diff line number Diff line change 1717
1818import  uk .co .real_logic .sbe .PrimitiveType ;
1919import  uk .co .real_logic .sbe .generation .CodeGenerator ;
20- import  uk .co .real_logic .sbe .generation .OutputManager ;
20+ import  uk .co .real_logic .agrona .generation .OutputManager ;
2121import  uk .co .real_logic .sbe .ir .Encoding ;
2222import  uk .co .real_logic .sbe .ir .Ir ;
2323import  uk .co .real_logic .sbe .ir .Signal ;
2424import  uk .co .real_logic .sbe .ir .Token ;
25- import  uk .co .real_logic .sbe . util .Verify ;
25+ import  uk .co .real_logic .agrona .Verify ;
2626
2727import  java .io .IOException ;
2828import  java .io .Writer ;
Original file line number Diff line number Diff line change 1717
1818import  uk .co .real_logic .sbe .PrimitiveType ;
1919import  uk .co .real_logic .sbe .PrimitiveValue ;
20- import  uk .co .real_logic .sbe . util .Verify ;
20+ import  uk .co .real_logic .agrona .Verify ;
2121
2222import  java .nio .ByteOrder ;
2323
                         You can’t perform that action at this time. 
           
                  
0 commit comments