Changeset 300:3413c3236277

Show
Ignore:
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:
2 modified

Legend:

Unmodified
Added
Removed
  • src/org/w3c/unicorn/output/OutputModule.java

    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 $ 
    22// Author: Damien LEROY. 
    33// (c) COPYRIGHT MIT, ERCIM ant Keio, 2006. 
     
    3030         */ 
    3131        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); 
    3333 
    3434        /** 
     
    3737         */ 
    3838        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); 
    4040 
    4141} 
  • src/org/w3c/unicorn/output/SimpleOutputModule.java

    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 $ 
    22// Author: Damien LEROY. 
    33// (c) COPYRIGHT MIT, ERCIM ant Keio, 2006. 
     
    1818 
    1919        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) { 
    2121                aOutputFormater.produceOutput(mapOfStringObject, aWriter); 
    2222        } 
    2323 
    2424        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) { 
    2626                aOutputFormater.produceError(errorMessage, aWriter); 
    2727        }