| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||||||
| FormClientPropertyPersistenceStrategy |
|
| 0.0;0 |
| 1 | package org.trails.record; |
|
| 2 | ||
| 3 | import org.apache.tapestry.engine.ServiceEncoding; |
|
| 4 | import org.apache.tapestry.record.ClientPropertyPersistenceStrategy; |
|
| 5 | ||
| 6 | /** |
|
| 7 | * Based on com.zillow.web.infrastructure.FormClientPropertyPersistenceStrategy |
|
| 8 | * described in http://wiki.apache.org/jakarta-tapestry/FormClientPersistence |
|
| 9 | */ |
|
| 10 | 0 | public class FormClientPropertyPersistenceStrategy extends ClientPropertyPersistenceStrategy |
| 11 | { |
|
| 12 | ||
| 13 | @Override |
|
| 14 | public void addParametersForPersistentProperties(ServiceEncoding encoding, boolean post) |
|
| 15 | { |
|
| 16 | 0 | if (post) |
| 17 | { |
|
| 18 | 0 | super.addParametersForPersistentProperties(encoding, post); |
| 19 | } |
|
| 20 | 0 | } |
| 21 | } |