This is an automated email from the ASF dual-hosted git repository.
thiagohp pushed a change to branch javax
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
from f786355f2 Removing unneeded code in SeleniumTestCase.openLinks()
new e8564a9ff TAP5-2770: avoiding using FieldHandle when in multiple
classloader mode
new 4a226d063 TAP5-2770: avoiding using FieldHandle when in multiple
classloader mode
new b632f5e0a TAP5-2770: fixing JavaDoc errors
new 5da802b1e TAP5-2770: fixing regression
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../internal/plastic/InstructionBuilderImpl.java | 45 ++++-
.../tapestry5/plastic/FieldValueProvider.java | 64 +++++++
.../tapestry5/plastic/InstructionBuilder.java | 16 ++
.../org/apache/tapestry5/plastic/PlasticUtils.java | 206 ++++++++++++++++++++-
.../tapestry5/plastic/PropertyValueProvider.java | 63 +++++++
.../apache/tapestry5/plastic/PlasticUtilsTest.java | 115 ++++++++++++
.../plastic/test/PlasticUtilsTestObject.java | 105 +++++++++++
....java => PlasticUtilsTestObjectSuperclass.java} | 21 ++-
.../tapestry5/internal/transform/CachedWorker.java | 57 +++++-
.../tapestry5/internal/transform/ImportWorker.java | 85 +++++++--
.../transform/PropertyValueProviderWorker.java | 68 +++++++
.../apache/tapestry5/modules/TapestryModule.java | 13 +-
.../app1/components/SubclassWithImport.java | 14 +-
.../app1/components/SuperclassWithImport.java | 13 ++
14 files changed, 842 insertions(+), 43 deletions(-)
create mode 100644
plastic/src/main/java/org/apache/tapestry5/plastic/FieldValueProvider.java
create mode 100644
plastic/src/main/java/org/apache/tapestry5/plastic/PropertyValueProvider.java
create mode 100644
plastic/src/test/java/org/apache/tapestry5/plastic/PlasticUtilsTest.java
create mode 100644
plastic/src/test/java/org/apache/tapestry5/plastic/test/PlasticUtilsTestObject.java
copy plastic/src/test/java/org/apache/tapestry5/plastic/test/{NoopAdvice.java
=> PlasticUtilsTestObjectSuperclass.java} (62%)
create mode 100644
tapestry-core/src/main/java/org/apache/tapestry5/internal/transform/PropertyValueProviderWorker.java