Changeset 300:3413c3236277
- Timestamp:
- 09/08/09 14:22:02 (4 years ago)
- Author:
- tgambet
- Branch:
- default
- convert_revision:
- svn:cdcfb263-7567-472c-a848-e2c2df3466e7/trunk@301
- Message:
-
changed mapOfSpecificParameters from type Map<String, String[]> to Map<Strin, String> for now
- Location:
- src/org/w3c/unicorn/output
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r295
|
r300
|
|
| 1 | | // $Id: OutputModule.java,v 1.3 2009-09-07 16:32:20 tgambet Exp $ |
| | 1 | // $Id: OutputModule.java,v 1.4 2009-09-08 14:22:02 tgambet Exp $ |
| 2 | 2 | // Author: Damien LEROY. |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM ant Keio, 2006. |
| … |
… |
|
| 30 | 30 | */ |
| 31 | 31 | public abstract void produceOutput(final OutputFormater aOutputFormater, Map<String, Object> mapOfStringObject, |
| 32 | | final Map<String, String[]> mapOfParameter, final Writer aWriter); |
| | 32 | final Map<String, String> mapOfParameter, final Writer aWriter); |
| 33 | 33 | |
| 34 | 34 | /** |
| … |
… |
|
| 37 | 37 | */ |
| 38 | 38 | public abstract void produceError(final OutputFormater aOutputFormater, Message errorMessage, |
| 39 | | final Map<String, String[]> mapOfParameter, final Writer aWriter); |
| | 39 | final Map<String, String> mapOfParameter, final Writer aWriter); |
| 40 | 40 | |
| 41 | 41 | } |
-
|
r295
|
r300
|
|
| 1 | | // $Id: SimpleOutputModule.java,v 1.3 2009-09-07 16:32:20 tgambet Exp $ |
| | 1 | // $Id: SimpleOutputModule.java,v 1.4 2009-09-08 14:22:02 tgambet Exp $ |
| 2 | 2 | // Author: Damien LEROY. |
| 3 | 3 | // (c) COPYRIGHT MIT, ERCIM ant Keio, 2006. |
| … |
… |
|
| 18 | 18 | |
| 19 | 19 | public void produceOutput(final OutputFormater aOutputFormater, Map<String, Object> mapOfStringObject, |
| 20 | | final Map<String, String[]> mapOfParameter, final Writer aWriter) { |
| | 20 | final Map<String, String> mapOfParameter, final Writer aWriter) { |
| 21 | 21 | aOutputFormater.produceOutput(mapOfStringObject, aWriter); |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | public void produceError(final OutputFormater aOutputFormater, Message errorMessage, |
| 25 | | final Map<String, String[]> mapOfParameter, final Writer aWriter) { |
| | 25 | final Map<String, String> mapOfParameter, final Writer aWriter) { |
| 26 | 26 | aOutputFormater.produceError(errorMessage, aWriter); |
| 27 | 27 | } |