Difference between revisions of "Org.simantics.databoard"

From Developer Documents
Jump to navigation Jump to search
m
m
Line 12: Line 12:
 
=Trunk Development=
 
=Trunk Development=
 
(Requires Simantics Account)
 
(Requires Simantics Account)
* [[Databoard Developer Manual|Java Developer Manual]] (0.6.0) ([http://dev.simantics.org/index.php?title=Databoard_Developer_Manual&action=pdfbook&format=html Download])
+
* [[Databoard Developer Manual|Java Developer Manual]] (0.6.0) ([http://dev.simantics.org/index.php?title=Databoard_Developer_Manual&action=pdfbook&format=single Download])
* [[Databoard Specification]] (0.6.0) ([http://dev.simantics.org/index.php&title=Databoard_Specification&action=pdfbook&format=html Download])
+
* [[Databoard Specification]] (0.6.0) ([http://dev.simantics.org/index.php&title=Databoard_Specification&action=pdfbook&format=single Download])
 
* [[svn:foundation/databoard/|SVN]] (0.6.0)
 
* [[svn:foundation/databoard/|SVN]] (0.6.0)
 
* [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].

Revision as of 14:36, 7 December 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 and has low learning curve. No code generation - User classes. <syntaxHighlight lang="java">

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

</syntaxHighlight>

Trunk Development

(Requires Simantics Account)

Download Releases

Release 0.6.0


Release 0.5.4


Release 0.5.2

Contact