DOC

com.google.code.maven-play-plugin.com.sienaproject.siena : siena

Maven & Gradle

Mar 12, 2013
1 usages
81 stars

siena · Siena is a persistence abstraction layer made in Java with various implementations: * siena-jdbc: persists objects into a relational database using JDBC (status: deeply tested) * siena-gae: persists objects into the Google App Engine's datastore using its low-level API (status: beta) * siena-sdb: persists objects using Amazon's SimpleDB (very experimental) * siena-remote: persists objects remotely using a remote web application that uses siena. (planning) Siena is also: * Intrusive. You make a class persistent by extending a certain class. Relationships are defined also in an intrusive way. * Simple. Simplicity is the most important thing. * Limited. Due to the simplicity there are several unsupported things such as JOINs. * Extensible. There are two interfaces you can implement on your own way.

Table Of Contents

Latest Version

Download com.google.code.maven-play-plugin.com.sienaproject.siena : siena Javadoc & API Documentation - Latest Versions:

All Versions

Download com.google.code.maven-play-plugin.com.sienaproject.siena : siena Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
1.0.x

How to open Javadoc JAR file in web browser

  1. Rename the file siena-1.0.0-b6-20111107-javadoc.jar to siena-1.0.0-b6-20111107-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder siena-1.0.0-b6-20111107-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "siena-1.0.0-b6-20111107-sources.jar" -d "siena-1.0.0-b6-20111107-javadoc" -subpackages 

Advertisement