Difference between revisions of "Org.simantics.databoard"

From Developer Documents
Jump to navigation Jump to search
m
m
Line 9: Line 9:
 
</syntaxHighlight>
 
</syntaxHighlight>
  
=Documents=
+
=Trunk Development=
 +
(Requires Simantics Account)
 
* [[Databoard Developer Manual|Java Developer Manual]] (0.6.0)
 
* [[Databoard Developer Manual|Java Developer Manual]] (0.6.0)
 
* [[Databoard Specification]] (0.6.0)
 
* [[Databoard Specification]] (0.6.0)
Line 15: Line 16:
 
* [https://www.simulationsite.net/svn/simantics/foundation/databoard/trunk/org.simantics.databoard/doc/changelog.txt Change Log].
 
* [https://www.simulationsite.net/svn/simantics/foundation/databoard/trunk/org.simantics.databoard/doc/changelog.txt Change Log].
  
=Download=
+
=Download Releases=
  
 
===Release 0.5.2 ===
 
===Release 0.5.2 ===

Revision as of 22:20, 9 November 2010

Databoard is a software library built upon a simple but well formulated and expressive type system. The design is a compromise of expression power, advanced functions, and performance. In contrast to XML's rich and uninhibited type system, databoard's simple and controlled model has enabled more practical features. Besides the norm features binary serialization, human readable type and value notation, network communication, there are also more advanced features such class binding, annotations, recursion, type conversion, value conversions, value comparisons, variant types and random access.

Databoard is simple to use, no installation, no code generation. <syntaxHighlight lang="java">

   Rectangle2D rect = new Rectangle2D.Double();
   Binding binding = Bindings.getBinding( rect.getClass() );
   byte[] data = binding.serializer().serialize(rect);

</syntaxHighlight>

Trunk Development

(Requires Simantics Account)

Download Releases

Release 0.5.2

Contact