Difference between revisions of "Org.simantics.databoard"

From Developer Documents
Jump to navigation Jump to search
m
m
Line 19: Line 19:
 
=Download Releases=
 
=Download Releases=
  
===Version 0.6.0 (7.12.2010) ===
+
===Version 0.6.1 (25.1.2011) ===
* {{Rev|Databoard_Specification|7665|Databoard Specification 0.6.0}}
+
* {{Rev|Databoard_Specification|1699|Databoard Specification 0.6.1}}
* {{Rev|databoard_dev|7669|Databoard Developer manual 0.6.0}}
+
* {{Rev|Databoard_Developer_Manual|1629|Databoard Developer manual 0.6.1}}
* [[svn:foundation/databoard/tags/0.6.0|SVN 0.6.0]]
+
* [[svn:foundation/databoard/tags/0.6.1|SVN 0.6.1]]
 
* [[Licensing#Eclipse_Public_License|License]] (EPL v1.0)
 
* [[Licensing#Eclipse_Public_License|License]] (EPL v1.0)
 
* Download Plain Old Java Objects Library (.jar)
 
* Download Plain Old Java Objects Library (.jar)
**[[Media:org.simantics.databoard-0.6.0.zip]] The release
+
**[[Media:org.simantics.databoard-0.6.1.zip]] The release
**[[Media:org.simantics.databoard-0.6.0.jar]] Library
+
**[[Media:org.simantics.databoard-0.6.1.jar]] Library
**[[Media:org.simantics.databoard-0.6.0_project.zip]] All project files
+
**[[Media:org.simantics.databoard-0.6.1_project.zip]] All project files
**[[Media:org.simantics.databoard_0.6.0_src.zip]] Source library
+
**[[Media:org.simantics.databoard_0.6.1_src.zip]] Source library
 
* Download Eclipse plug-in
 
* Download Eclipse plug-in
**[[Media:org.simantics.databoard_0.6.0.jar]] Eclipse plug-in
+
**[[Media:org.simantics.databoard_0.6.1.jar]] Eclipse plug-in
**[[Media:org.simantics.databoard.source_0.6.0.jar]] Source plug-in
+
**[[Media:org.simantics.databoard.source_0.6.1.jar]] Source plug-in
 
**'''Dependency''' [[Media:gnu.trove2_2.0.4.jar]]  Gnu Trove 2.0.4 [http://trove4j.sourceforge.net/]
 
**'''Dependency''' [[Media:gnu.trove2_2.0.4.jar]]  Gnu Trove 2.0.4 [http://trove4j.sourceforge.net/]
 
**'''Dependency''' [[Media:org.objectweb.asm_3.1.0.v200803061910.jar]] ASM 3.1.0 (Optional Dependency)
 
**'''Dependency''' [[Media:org.objectweb.asm_3.1.0.v200803061910.jar]] ASM 3.1.0 (Optional Dependency)

Revision as of 13:52, 25 January 2011

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

Version 0.6.1 (25.1.2011)


Version 0.5.4


Version 0.5.2

Contact