Changes between Version 36 and Version 37 of j2p
- Timestamp:
- 06/29/23 09:03:00 (16 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
j2p
v36 v37 65 65 * use package-private classes to replace your own inner classes. 66 66 * For the non-static inner class: pass the enclosing class as argument to the child class constructor. You may have to use more tricks to get around cyclic dependencies. 67 68 ===== Exceptions 69 There are a very few exceptions. If some particular inner classes, particularly constants, are used in very specific translators, these translators may opt to attempt to recognise these and process them separately. One example is the JsonDeserializer (jackson-t package) that recognises use of "com.fasterxml.jackson.databind.JsonDeserializer.None". Check the documentation of the translators for details. 67 70 68 71 ==== More notes: