Skip to content
Snippets Groups Projects
  1. Jul 05, 2016
  2. Jun 07, 2016
    • Romain Gilles's avatar
      Create a maven like project structure for java development. Make it OSGi... · 9875b0e0
      Romain Gilles authored
      Create a maven like project structure for java development. Make it OSGi compliant. Generate the flatbuffers code for testing (example).
      
      Java developer are mostly comfortable with maven project structure. One one the main concept behind maven is convention. If you follow the maven project convention then your development team will get more effective as they now this project structure and can easily find the production code versus the test code.
       In this pull request I have structured the java project around 2 main parts:
        * the `flatbuffers` project. This project is the api / lib project and contains the test code structure + an example of code generation for testing. This avoid to commit generated code. Pre-configure JUnit for test driven development and make this project OSGi compliant.
        * the `jmh` project. This project aims to provide a placeholder for micro-benchmarking. JMH is a 'de facto' standard for micro benchmarking you can find more details here: http://openjdk.java.net/projects/code-tools/jmh/
      
      For now I didn't move the JavaTest class but it could be a next step with a migration to the JUnit framework.
      The only impacts are the move of the class and the project structure => no code change.
      9875b0e0
  3. Jun 02, 2016
  4. Jun 01, 2016
  5. May 31, 2016
  6. May 30, 2016
  7. May 28, 2016
  8. May 26, 2016
  9. May 25, 2016
  10. May 24, 2016
  11. May 23, 2016
  12. May 21, 2016
  13. May 20, 2016
  14. May 19, 2016
  15. May 18, 2016
  16. May 03, 2016
    • Martin Ankerl's avatar
      Added helpers to access objects while creating the flatbuffer. · 023fec62
      Martin Ankerl authored
      GetObject and GetMutableObject are similar to GetRoot and GetMutableRoot,
      and can be useful when wanting to access data that has just been created.
      Unfortunately there is a danger in using these methods, as it is possible
      that the buffer reallocates which will invalidate the pointers.
      023fec62
  17. May 01, 2016
  18. Apr 29, 2016
  19. Apr 28, 2016
Loading