objenesis 1.2-1 source package in Ubuntu

Changelog

objenesis (1.2-1) unstable; urgency=low

  * Initial release. (Closes: #573812)
 -- Ubuntu Archive Auto-Sync <email address hidden>   Tue,  25 May 2010 15:16:36 +0100

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Maverick
Original maintainer:
Debian Java Maintainers
Architectures:
all
Section:
java
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Maverick: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
objenesis_1.2.orig.tar.gz 14.3 KiB e95801158f2ed9742e33beaa927588e054ed20d5581a302bd67fbb5545b9ef80
objenesis_1.2-1.debian.tar.gz 2.1 KiB 6bd20b29bc36704d04fa0497eaa335722996d453a583c9aa29809712f5daa3c5
objenesis_1.2-1.dsc 1.3 KiB 078824a9c5982346cb0e5abda33e037b6b730af36dd115539cf71066022d8096

View changes file

Binary packages built by this source

libobjenesis-java: Java library to instantiate a new object of a particular class

 Objenesis is a small Java library that serves one purpose: to instantiate a
 new object of a particular class.
 Java already supports this dynamic instantiation of classes using
 Class.newInstance(). However, this only works if the class has an appropriate
 constructor. There are many times when a class cannot be instantiated this
 way, such as when the class contains:
  * Constructors that require arguments.
  * Constructors that have side effects.
  * Constructors that throw exceptions.
 As a result, it is common to see restrictions in libraries stating that
 classes must require a default constructor.
 Objenesis aims to overcomes these restrictions by bypassing the constructor
 on object instantiation.

libobjenesis-java-doc: Documentation for Objenesis

 Objenesis is a small Java library that serves one purpose: to instantiate a
 new object of a particular class.
 Java already supports this dynamic instantiation of classes using
 Class.newInstance(). However, this only works if the class has an appropriate
 constructor. There are many times when a class cannot be instantiated this
 way, such as when the class contains:
  * Constructors that require arguments.
  * Constructors that have side effects.
  * Constructors that throw exceptions.
 As a result, it is common to see restrictions in libraries stating that
 classes must require a default constructor.
 Objenesis aims to overcomes these restrictions by bypassing the constructor
 on object instantiation.
 .
 This is the API documentation for Objenesis