pascallouisperez / jsonmarshaller

JsonMarshaller is a Java 1.5 library that allows marshalling and unmarshalling of JSON objects to and from entities ("Java classes").
Apache License 2.0
1 stars 0 forks source link

Marshall only entities should not need a no-arg constructor #4

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
The entity

{{{
class A {
  @Value int getWhatever() { ...
}
}}}

should not be required to have a no-arg constructor as it will never be
constructed.

Original issue reported on code.google.com by pascallo...@gmail.com on 28 Feb 2008 at 11:05